{% extends "webadmin/base.html" %} {% load i18n %} {% load markup %} {% load custom_tags %} {% block title %} {% if sc_id %} {% trans "Edit script" %} {% else %} {% trans "Create script" %} {% endif %} {% endblock %} {% block content %}
{% if sc_id %}

{% trans "Edit script" %}

{% else %}

{% trans "Add script" %}

{% endif %}

{% trans "Fields marked with an * are mandatory." %}


{% if sc_id %}
{% else %} {% endif %} {% for field in form %} {% endfor %}
{{ field.label_tag }}{% if field.field.required %}*{% endif %}{{ field }}{% if field.errors %}{{ field.errors }}{% endif %}{{ field.help_text|safe }}
 
{% endblock %}