{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Add new Object" %}{% endblock %} {% block smallheader %}{% trans "Add" %}{% endblock %} {% block largeheader %}{{ object_type }}{% endblock %} {% block nav1 %}{% trans "Object Browser" %}{% endblock %} {% block toolbar %}{% endblock %} {% block content %}

{% blocktrans %}Alright, before adding a new {{ object_type }} we need some basic info:{% endblocktrans %}

{% if object_type != "template" %}
{% url "objectbrowser.views.add_object" "template" as the_url %} {% blocktrans %}If you are looking to add a {{ object_type }} template, instead you should be adding a {{ object_type }} template.{% endblocktrans %}
{% endif %}
{% csrf_token %} {% include "bootstrap_fields.html" with fields=form %}
{% endblock %} {% block footer %} {{ block.super }} {% endblock %}