{% extends "base.html" %} {% load dictionary_extras version_static i18n %} {% block extrahead %} {% endblock %} {% block title %}{% trans 'Klasyfikacje' %}{% endblock %} {% block content %}
{% csrf_token %} {{ add_form.as_p }}

{% for classification, value_form, vocab_form, using in classification_forms %}
{% csrf_token %} {{ value_form.as_p }}

{% trans 'Używające słowniki' %}:

{% if using %}
    {% for vocab in using %}
  • {{ vocab.id }}
  • {% endfor %}
{% else %}

{% trans 'brak' %}

{% endif %}
{% csrf_token %} {{ vocab_form.as_p }}

{{ classification.name }}

{% trans 'Wartości' %}:

{% with tree=classification.value_tree %} {% if tree %} {% value_tree tree %} {% endif %} {% endwith %}
{% endfor %} {% endblock %}