Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
convert a list to links
#1
hi I am currently using this javascript and would love to do it natively in python... can someone lend me a hand getting the same result as I do with the JS but server side? instead of outputting the string list I want to output the html and string numbers.

<script type="text/javascript"> const out = {{ blk.ats|blkatid|safe }}.reduce((prev, item) => prev += <a href=/at/${item}>${item}</a><br/>, ''); document.write(out);</script>

This takes a python string like this: ['12227509686562344891', '14231167159403602480'] and gives me an html output in django like this:
<a href="/at/12227509686562344891">12227509686562344891</a><br/><a href="/at/14231167159403602480">14231167159403602480</a><br/>
So the above string is what i need the python script to output.. the original string list can be one or many.

for an html output similar to this:
12227509686562344891
14231167159403602480
Reply


Messages In This Thread
convert a list to links - by Pir8Radio - Nov-27-2022, 11:47 PM
RE: convert a list to links - by perfringo - Nov-28-2022, 07:28 AM
RE: convert a list to links - by Pir8Radio - Nov-28-2022, 01:52 PM
RE: convert a list to links - by DeaD_EyE - Nov-28-2022, 09:54 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  convert string to float in list jacklee26 6 3,344 Feb-13-2023, 01:14 AM
Last Post: jacklee26
  convert this List Comprehensions to loop jacklee26 8 2,779 Oct-21-2022, 04:25 PM
Last Post: deanhystad
  Convert list to interger Clives 5 2,542 May-09-2022, 12:53 PM
Last Post: deanhystad
  Convert each element of a list to a string for processing tester_V 6 7,489 Jun-16-2021, 02:11 AM
Last Post: tester_V
  convert numbers into list lokesh 1 2,975 Jun-03-2021, 06:37 AM
Last Post: menator01
Question convert unlabeled list of tuples to json (string) masterAndreas 4 9,089 Apr-27-2021, 10:35 AM
Last Post: masterAndreas
Star Convert Bytearray into List using list() Shlok 2 6,850 Feb-18-2021, 10:44 AM
Last Post: deanhystad
  convert List with dictionaries to a single dictionary iamaghost 3 3,871 Jan-22-2021, 03:56 PM
Last Post: iamaghost
  help with url links- href links don't work properly DeBug_0neZer0 1 2,571 Jan-06-2021, 11:01 PM
Last Post: DeBug_0neZer0
Sad Convert python list to dictionary akanowhere 6 4,493 Dec-27-2020, 09:26 PM
Last Post: Pedroski55

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020