22 lines
No EOL
751 B
HTML
22 lines
No EOL
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 %} |