{% extends "base.html" %} {% load multilingual_tags %} {% block body %} {% if object %}

Change category

{% else %}

New category

{% endif %}

This page lets you {{ object|yesno:"edit,create" }} categories with forms created two ways.

1. form with all translations 2. form with default translation ({{ DEFAULT_LANGUAGE_CODE }})

Creator: {{ form.creator }}

Parent: {{ form.parent }}

Name EN: {% edit_translation form name "en" %}

Description EN: {% edit_translation form description "en" %}

Name PL: {% edit_translation form name "pl" %}

Description PL: {% edit_translation form description "pl" %}

, Cancel

Creator: {{ form.creator }}

Parent: {{ form.parent }}

Name: {% edit_translation form name %}

Description: {% edit_translation form description %}

, Cancel

{% endblock %}