passei os frontends pra bootstrap-flask

This commit is contained in:
LS
2025-02-19 14:27:14 -03:00
parent eff8c531d7
commit 765688df1f
19 changed files with 205 additions and 162 deletions

18
templates/home.html Normal file
View File

@@ -0,0 +1,18 @@
{% extends 'base.html' %}
{% block title %}Início{% endblock %}
{% block content %}
<div class="row">
<div class="col-md-12">
<h2>Menu do Sistema</h2>
<div class="list-group">
{% for url, endpoint in links %}
<a href="{{ url }}" class="list-group-item list-group-item-action">
{{ endpoint|replace('_', ' ')|title }}
</a>
{% endfor %}
</div>
</div>
</div>
{% endblock %}