workout/gym/templates/gym/theoretical_max_edit.html
2018-03-04 21:45:50 +01:00

22 lines
751 B
HTML

{% extends 'gym/base.html' %}
{% load bootstrap4 %}
{% block title %}{{ title }} un max théorique{% endblock %}
{% block h1 %}{{ title }} un max théorique{% endblock %}
{% block content %}
<div class="row">
<div class="col-12">
<form action="" method="post">
{% csrf_token %}
{% bootstrap_form form %}
{% buttons %}
<button type="submit" class="btn btn-success">Valider</button>
{% if edit %}
<a href="{% url 'theoretical-max-delete' setting.pk %}" class="btn btn-danger">Supprimer</a>
{% endif %}
{% endbuttons %}
</form>
</div>
</div>
{% endblock %}