bornhack-website/src/teams/templates/team_shift_form.html

20 lines
425 B
HTML
Raw Normal View History

2018-08-05 10:18:10 +00:00
{% extends 'team_base.html' %}
2018-07-02 21:52:52 +00:00
{% load commonmark %}
{% load bootstrap3 %}
{% block title %}
{% if object.pk %}Update{% else %}Create{% endif %} Shift | {{ block.super }}
{% endblock %}
2018-07-02 21:52:52 +00:00
2018-08-05 10:18:10 +00:00
{% block team_content %}
2018-07-02 21:52:52 +00:00
<form method="POST">
{% csrf_token %}
{% bootstrap_form form %}
<button type="submit" class="btn btn-success">
{% if object.pk %}Update{% else %}Create{% endif %}
2018-07-02 21:52:52 +00:00
</button>
</form>
{% endblock %}