{% extends "django_mobile_app_distribution/base.html" %} {% load i18n %} {% load url from future %} {% block title %}{% trans "app list view" %}{% endblock %} {% block content %}
{% trans 'logout' %}

{% trans "app list view" %}

{% load set_var %} {% set active_app_name = -1 %} {% set active_os_name = -1 %} {% for app in apps %} {% if app.name != active_app_name %} {% if active_app_name != -1 %}
{% endif %} {% set active_os_name = -1 %} {% set active_app_name = app.name %}

{{ app.name }}

{% endif %} {% if app.operating_system != active_os_name %} {% if active_os_name != -1 %} {% endif %} {% set active_os_name = app.operating_system %}

{{ active_os_name }}

{% endblock %}