{% extends "webadmin/base.html" %} {% block "title" %}{% trans "Forum Settings" %}{% endblock %} {% block "content" %}

{% trans "Forum Settings" %}

{% trans "Here you can manage your forum and subforums." %}

{% if not forum %}

{% trans "Root Category" %}

{% else %}

{{ forum.name|e }}

one level up {% endif %} {% for forum in forums %}
{{ forum.forum_id.html }}
{% trans "Name" %}
{{ forum.name.html }}{{ forum.name.errors }}
{% trans "Description" %}
{{ forum.description.html }}{{ forum.description.errors }}
{% trans "Link" %}
{{ forum.link.html }}{{ forum.link.errors }}
{% trans "Position" %}
{{ forum.position.html }}{{ forum.position.errors }}
{% trans "Delete" %} | {% trans "Switch To" %}
{% if not loop.last %}
{% endif %} {% endfor %}

{% trans "Add new Forum" %}

{{ add_form.forum_id.html }}
{% trans "Name" %}
{{ add_form.name.html }}{{ add_form.name.errors }}
{% trans "Description" %}
{{ add_form.description.html }}{{ add_form.description.errors }}
{% trans "Link" %}
{{ add_form.link.html }}{{ add_form.link.errors }}
{% trans "Position" %}
{{ add_form.position.html }}{{ add_form.position.errors }}
{% endblock %}