{% extends "base_generic.html" %} {% load i18n %} {% include 'messages.html' with messages=messages %} {% include 'form_errors.html' with form=form %} {% block generic_content %}

{% trans 'Member form' %}

{% csrf_token %}
{{ form.name.label_tag }} {% if form.name.help_text %}
{{ form.name.help_text|safe }}
{% endif %} {{ form.name }} {{ form.name.errors }}
{{ form.category.label_tag }} {% if form.category.help_text %}
{{ form.category.help_text|safe }}
{% endif %} {{ form.category }} {{ form.category.errors }}
{{ form.disk_quota.label_tag }} {% if form.disk_quota.help_text %}
{{ form.disk_quota.help_text|safe }}
{% endif %} {{ form.disk_quota }} {{ form.kin.errors }}
{% endblock %}