ref: cycles
src/templates/cycles.html
1 2 3 4 5 6 7 8 9 10 11 12 |
{% extends "layout.html" %} {% block body %} <section class="cycles"> <h1>Ciclo em aberto</h1> <div class="cycle"> <h2>{{ current_cycle.title }}</h2> <p class="white-space-pre">{{ current_cycle.description }}</p> <a href="{{url_for('cycles.show', id = current_cycle.id)}}">Ver ciclo</a> <a href="{{url_for('cycles.close', id = current_cycle.id)}}">Fechar ciclo</a> </div> </section> {% endblock %} |