{% extends "pretixcontrol/base.html" %} {% load i18n %} {% load bootstrap3 %} {% block title %}{% trans "Your applications" %}{% endblock %} {% block content %}

{% trans "Your applications" %}

{% if applications %}
{% for application in applications %} {% endfor %}
{% trans "Name" %}
{{ application.name }}

{% trans "Create new application" %}

{% else %}

{% blocktrans trimmed %} No applications registered yet. {% endblocktrans %}

{% trans "Register a new application" %}
{% endif %} {% endblock %}