{% extends "base.html" %} {% block title %}{% trans %}Available formats{% endtrans %}{% endblock %} {% block content %}
{% if q is defined and q | length %}

{% trans %}Search for{% endtrans %} "{{q}}"

{% trans %}Following is the list of search result on given query.{% endtrans %}

{% else %}

{% trans %}File format available and information{% endtrans %}

{% trans %}This file format extension list gives an overview about the huge amount of different file types available. To get more detailed information about each file extension, please click on the links below.{% endtrans %}

{% endif %}
{% if types | length == 0 %}

{% trans %}No result found
Please try some other query{% endtrans %}

{% endif %}
{% for type in types | sort %} {% endfor %}
{% endblock %}