18 lines
481 B
HTML
18 lines
481 B
HTML
|
|
{% 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 %}
|