{% extends "repomaker/base_modal.html" %} {% load i18n %} {% load humanize %} {% block title %}{{ app.name }}{% endblock title %} {% block toolbar %}
{% block back-button %} arrow_back {% endblock back-button %}
{% block top-buttons %} {% endblock top-buttons %}
{% endblock toolbar %} {% block rm-content %}
{% block add-translation-button %} add {% trans 'Add Translation' %} {% endblock add-translation-button %} {% for lang in app.get_available_languages_as_dicts %} {{ lang.name }} {% endfor %}
Repo Icon

{{ app.name }}

{% block author %} {% if app.author_name %}
{% blocktrans with author=app.author_name trimmed %} By {{ author }} {% endblocktrans %}
{% endif %} {% endblock author %}
{% block info %}
{% if app.get_latest_version %}
Version: {{ app.get_latest_version.version_name }}
{% endif %}
{# time is e.g. '6 days' and will be translated automatically #} {% blocktrans with time=app.last_updated_date|timesince trimmed %} Updated {{ time }} ago {% endblocktrans %}
{% endblock info %}
{% block summary %} {% if app.summary_override %}
{{ app.summary_override }}
{% endif %}
{{ app.summary }}
{% endblock summary %} {% block categories %} {% if app.category.exists %} {% for category in app.category.all %} {{ category }} {% endfor %} {% endif %} {% endblock categories %}
{% block app-info %} {% if app.tracked_remote %}
{% blocktrans with repo_name=app.tracked_remote.repo.name trimmed %} This app gets automatically updated from the remote repo "{{ repo_name }}". {% endblocktrans %}
{% endif %} {% endblock app-info %}
{% block description %} {% if app.description_override %}
{{ app.description_override|safe }}
{% endif %} {{ app.description|safe }} {% endblock description %}
{% block screenshots %} {% if form or screenshots.exists %}
{% block screenshot-header %}{% endblock screenshot-header %}
{% block screenshot-drop %}{% endblock screenshot-drop %} {% for screenshot in screenshots %}
{% block screenshot-delete %}{% endblock screenshot-delete %}
{% endfor %}
{% endif %} {% endblock screenshots %} {% block feature-graphic %} {% if app.feature_graphic %}

{% trans 'Feature Graphic' %}

{% endif %} {% endblock feature-graphic %} {% block apks %}

{% trans 'version history' %}

{% block apk-drop %}{% endblock apk-drop %} {% if apks %} {% else %}

{% trans 'This app has no APK files.' %}

{% trans 'If you added this app from a remote repo, try deleting it and adding it again.' %}

{% endif %}
{% endblock apks %} {% block bottom-navigation %}
{% if app.get_previous %} arrow_back

{% trans 'Previous' %}

{% endif %}
{% if app.get_next %} arrow_forward

{% trans 'Next' %}

{% endif %}
{% endblock bottom-navigation %} {% block page-footer %}{% endblock page-footer %} {% endblock rm-content %}