mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2024-11-30 07:33:09 +00:00
16 lines
535 B
HTML
16 lines
535 B
HTML
{% extends "base.html" %}
|
|
|
|
{% load i18n static crispy_forms_filters %}
|
|
|
|
{% block content %}
|
|
<a class="btn btn-info" href="{% url "participation:team_detail" pk=object.pk %}"><i class="fas fa-arrow-left"></i> {% trans "Back to the team detail" %}</a>
|
|
<hr>
|
|
<form method="post" enctype="multipart/form-data">
|
|
<div id="form-content">
|
|
{% csrf_token %}
|
|
{{ form|crispy }}
|
|
</div>
|
|
<button class="btn btn-success" type="submit">{% trans "Upload" %}</button>
|
|
</form>
|
|
{% endblock %}
|