{% extends FUNC_BASE_HTML %} {% load i18n %} {% block css %} {{ block.super }} {% endblock css %} {% block js %} {{ block.super }} {% endblock js %} {% block form %}{% endblock form %}{% block endform %}{% endblock endform %} {% block to_ajaxform %}{% endblock to_ajaxform %} {% block ajaxform_modified %}{{ block.super }}{% endblock ajaxform_modified %} {% block function %}
{% csrf_token %}
{% for entry in entries %} {% empty %} {% endfor %}
{% trans "Username" %}
{% trans "Operation" %}
{{ entry.name }} {% comment %} {% endcomment %}
{% csrf_token %}
{{ create_form.name.label_tag }} {{ create_form.name }}
{{ create_form.password.label_tag }} {{ create_form.password }}
{% csrf_token %} {{ update_form.pk }}
{{ update_form.name.label_tag }} {{ update_form.name }}
{{ update_form.password.label_tag }} {{ update_form.password }}
{% comment %}
{% csrf_token %} {{ delete_form.pk }} {% trans "delete the user information" %}
{% endcomment %}
{% endblock function %}