{{ form.hidden_tag() }}
{{ action }} Dashboard {{ form.title.label }}
{% if form.title.errors %} {{ form.title }} {% for error in form.title.errors %}
{{ error }}
{% endfor %} {% else %} {{ form.title(rows="1", style="width:100%; font-family: Verdana, sans-serif; font-size: 12px; margin-bottom: 5px;") }} {% endif %}
{{ form.description.label }}
{% if form.description.errors %} {{ form.description }} {% for error in form.description.errors %}
{{ error }}
{% endfor %} {% else %} {{ form.description(rows="30", style="white-space: pre-wrap; width:100%; font-family: Verdana, sans-serif; font-size: 12px; margin-bottom: 5px;") }} {% endif %}
{{ form.submit(style="font-family: Verdana, sans-serif; font-size: 12px; margin-top: 5px;") }} {{ form.cancel(style="font-family: Verdana, sans-serif; font-size: 12px; margin-top: 5px;") }}