ref: master
core/templates/groups.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
{% extends 'layout.html' %}
{% block body %}
<section class="mb-5">
<a href="{{ url_for('groups.new') }}">Novo Fornecedor</a>
</section>
{% for group in groups %}
<div class="p-5 mb-5 box">
<div class="box box-header mb-5">
<h2>{{ group.name }}</h2>
</div>
<em class="white-space-pre">{{ group.location }}</em>
</div>
{% endfor %}
{% endblock %}
|