bornhack-website/src/teams/templates/shifts/shift_form.html

24 lines
469 B
HTML
Raw Normal View History

2018-07-02 21:52:52 +00:00
{% extends 'base.html' %}
{% load commonmark %}
{% load bootstrap3 %}
{% block content %}
<a class="btn btn-info"
href="{% url 'teams:shift_list' camp_slug=camp.slug team_slug=team.slug %}">
<i class="fas fa-chevron-left"></i> Cancel
</a>
<hr />
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 %}