2025-02-19 14:27:14 -03:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
|
|
|
|
|
|
{% block title %}Início{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
2025-03-24 14:50:42 -03:00
|
|
|
<div class="container">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-md-8 offset-md-2">
|
|
|
|
|
<h2 class="mb-4">Menu do Sistema</h2>
|
|
|
|
|
|
|
|
|
|
{% with messages = get_flashed_messages(with_categories=true) %}
|
|
|
|
|
{% if messages %}
|
|
|
|
|
{% for category, message in messages %}
|
|
|
|
|
<div class="alert alert-{{ category }}">{{ message }}</div>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% endwith %}
|
|
|
|
|
|
|
|
|
|
<div class="list-group">
|
|
|
|
|
{% for url, nome in links %}
|
|
|
|
|
<a href="{{ url }}" class="list-group-item list-group-item-action">
|
|
|
|
|
{{ nome }}
|
|
|
|
|
</a>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</div>
|
2025-02-19 14:27:14 -03:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{% endblock %}
|