{% endif %}
{% csrf_token %}
{% for app in apps %}
{% url 'add_remote_app' repo.id app.repo.id app.id app.language_code as url %}
{% trans 'Add' as action_title %}
{% include "repomaker/widgets/app_with_action.html" with url=url width=12 action_title=action_title %}
{% empty %}
{% if request.GET.search %}
{% blocktrans with search_term=request.GET.search trimmed %}
No apps found that match '{{ search_term }}'.
Please try a different search or remove other filter criteria.
{% endblocktrans %}
{% elif not category %}
{% if remote_repo %}
{% trans 'There are no apps in this repo.' %}
{% else %}
{% trans 'There are no apps available in the repos.' %}
{% endif %}
{% trans 'If you just added a repo, wait for the apps to download and try again later.' %}
{% elif remote_repo %}
{% trans 'This repo has no apps in the selected category. Try clearing it or select a different repo.' %}
{% else %}
{% trans 'There are no apps available in the selected category. Try clearing it.' %}
{% endif %}