{% extends "hobo/base.html" %} {% load i18n %} {% block appbar %} {% if service %}

{% blocktrans with name=service.name %}Variables for {{ name }}{% endblocktrans %} [{{ service.slug }}, {{ service.base_url }}]

{% else %}

{% trans 'Variables' %}

{% endif %} {% endblock %} {% block breadcrumb %} {{ block.super }} {% if service %} {% trans 'Variables for' %} {{ service.name }} ({{ service.slug }}) {% else %} {% trans 'Variables' %} {% endif %} {% endblock %} {% block content %}
{% for variable in variables %}

{% trans 'edit' %}

{% endfor %} {% if service %} {% trans 'Add new variable' %} {% else %} {% trans 'Add new variable' %} {% endif %}
{% endblock %} {% block page-end %} {% endblock %}