Create activities

This commit is contained in:
Yohann D'ANELLO 2020-03-27 01:31:54 +01:00
parent 213e5a8369
commit 45b14ed1bd
4 changed files with 36 additions and 12 deletions

View file

@ -0,0 +1,11 @@
{% extends "base.html" %}
{% load static %}
{% load i18n %}
{% load crispy_forms_tags %}
{% block content %}
<form method="post">
{% csrf_token %}
{{form|crispy}}
<button class="btn btn-primary" type="submit">{% trans "Submit" %}</button>
</form>
{% endblock %}