Files
WebTech/application/dash/templates/dashboard.html
2025-04-16 09:47:11 +02:00

19 lines
609 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "base_template.html" %}
{%block title%}Dashboard{%endblock%}
{%block content%}
<div class="grid-container">
{% for service in services%}
<div>
<form action="{{ url_for('dash.delete_item', service_id=service.id) }}" method="POST" style="display:inline;">
<button class="delete-btn" type="submit">×</button>
</form>
<div onclick="location.href='{{service.url}}';" style="cursor: pointer;" class="container-xxl">
Name: {{service["name"]}} <br>
URL: {{service["url"]}}
</div>
</div>
{% endfor %}
</div>
{%endblock%}