{% extends "frontend/base.html" %} {% load i18n %} {% load static %} {% load partials %} {% block html_title %} {% block page_title %} {% block title %} {% blocktranslate with instance_name=instance.name organization_name=request.organization.name %}Update {{ instance_name }} in {{ organization_name }}{% endblocktranslate %} {% endblock %} {% endblock page_title %} {% endblock html_title %} {% partialdef service-form %} {% if form %}
{% if form_error %}
{% translate "Oops! Something went wrong with the service form generation. Please try again later." %}
{% else %} {% include "includes/tabbed_fieldset_form.html" with form=form %} {% endif %}
{% endif %} {% endpartialdef %} {% block content %}
{% if not form %} {% else %}
{% partial service-form %}
{% endif %}
{% endblock %}