{% extends 'base/base.html' %} {% load static %} {% block title %} New talk {% endblock %} {% block body %} {% include 'base/nav-bar.html' %}

Talk


{% csrf_token %}
Title of the contribution
Select the area or type
Enter your conference name
Location of the conference
Url to the conference or talk
{% include 'base/footer.html' %}
{% if form.errors %} {% for field in form %} {% for error in field.errors %}
× {{ field.label }}: {{ error|escape }}
{% endfor %} {% endfor %} {% for error in form.non_field_errors %}
× {{ error|escape }}
{% endfor %} {% endif %}
{% block script %} {% endblock %} {% endblock %}