{% extends "base.html" %} {% load i18n %} {% load static %} {% load bootstrap3 %} {% block extrajs %} {% endblock %} {% block title %} {% if form.instance.pk %} {% trans "Edit Gentity Event" %} {% else %} {% trans "Add Gentity Event" %} {% endif %} {% endblock %} {% block content %}
{% if form.errors %}

{% trans "Please correct the errors below: " %}{{ form.field_errors }}

{% endif %}
{% if form.instance.pk %}

{% trans "Edit gentity code details:" %}

{% else %}

{% trans "Fill the gentity code details:" %}

{% endif %} {% csrf_token %} {% bootstrap_form form %} {% buttons %} {% endbuttons %}
{% endblock %}