passei os frontends pra bootstrap-flask
This commit is contained in:
18
templates/home.html
Normal file
18
templates/home.html
Normal 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 %}
|
||||
Reference in New Issue
Block a user