Files
WebTech/application/dash/templates/dashboard.html
2025-04-15 23:25:43 +02:00

14 lines
372 B
HTML

{% extends "base_template.html" %}
{%block title%}Dashboard{%endblock%}
{%block content%}
<div class="grid-container">
{% for service in services%}
<div onclick="location.href='{{service.url}}';" style="cursor: pointer;" class="container-xxl">
Name: {{service["name"]}} <br>
URL: {{service["url"]}}
</div>
{% endfor %}
</div>
{%endblock%}