{% extends "base_generic.html" %} {% load i18n %} {% block generic_content %}

{% trans 'Petal' %}

{% csrf_token %}
{{ form.category.label_tag }} {% if form.category.help_text %}
{{ form.category.help_text|safe }}
{% endif %} {{ form.category }} {{ form.category.errors }}
{{ form.hostname.label_tag }} {% if form.hostname.help_text %}
{{ form.hostname.help_text|safe }}
{% endif %} {{ form.hostname }} {{ form.hostname.errors }}
{{ form.url.label_tag }} {% if form.url.help_text %}
{{ form.url.help_text|safe }}
{% endif %} {{ form.url }} {{ form.url.errors }}
{{ form.is_default }} {{ form.is_default.errors }} {% if form.is_default.help_text %}
{{ form.is_default.help_text|safe }}
{% endif %}
{% endblock %}