linkr/render.py
Nathan Woodburn f1e0d1b5dc
All checks were successful
Build Docker / Build Main Image (push) Successful in 21s
feat: Show link owner on admin dash
2023-11-17 11:17:03 +11:00

11 lines
485 B
Python

def links(links,host="",show_domain=False):
host = "https://"+host+"/"
html = ""
for link in links:
html += "<div class='link'><a href='"+link[3]+"' target='_blank' class='no_display'>"+host+link[2] +" -> " + link[3]+"</a>"
if show_domain:
html += "<div class='link-domain'>"+link[1]+"</div>"
html += "<div class='link-delete'><a class='no_display' href='/delete/"+link[2]+"'>Delete</a></div>"
html += "</div>\n"
return html