{% extends "base.html" %} {% block main_content %}
{{CreateSelect( "noo", noo, ["Oldest", "Newest"], "$('#offset').val(0)")|safe }} {{CreateSelect( "how_many", how_many, ["10", "25", "50", "75", "100", "150", "200", "500"])|safe }} grouped by: {{CreateSelect( "grouping", grouping, ["None", "Day", "Week", "Month"])|safe }}
{% set fd=entry_data[0].file_details[0] %}  {{how_many}} files 
{% if size == "64" %} {% set bt="btn-info" %} {% else %} {% set bt="btn-outline-info" %} {% endif %}
{% if size == "96" %} {% set bt="btn-info" %} {% else %} {% set bt="btn-outline-info" %} {% endif %}
{% if size == "128" %} {% set bt="btn-info" %} {% else %} {% set bt="btn-outline-info" %} {% endif %}
{% if size == "192" %} {% set bt="btn-info" %} {% else %} {% set bt="btn-outline-info" %} {% endif %}
{% if size == "256" %} {% set bt="btn-info" %} {% else %} {% set bt="btn-outline-info" %} {% endif %}
{% set last = namespace(printed=0) %} {% if grouping == "None" %}
{% endif %} {% for obj in entry_data %} {% if grouping == "Day" %} {% if last.printed != obj.file_details[0].day %} {% if last.printed > 0 %}
{% endif %}
Day: {{obj.file_details[0].day}} of {{obj.file_details[0].month}}/{{obj.file_details[0].year}}
{% set last.printed = obj.file_details[0].day %} {% endif %} {% elif grouping == "Week" %} {% if last.printed != obj.file_details[0].woy %} {% if last.printed > 0 %}
{% endif %}
Week #: {{obj.file_details[0].woy}} of {{obj.file_details[0].year}}
{% set last.printed = obj.file_details[0].woy %} {% endif %} {% elif grouping == "Month" %} {% if last.printed != obj.file_details[0].month %} {% if last.printed > 0 %}
{% endif %}
Month: {{obj.file_details[0].month}} of {{obj.file_details[0].year}}
{% set last.printed = obj.file_details[0].month %} {% endif %} {% endif %} {% if obj.type.name != "Directory" %}
{% if obj.type.name=="Image" %} {% elif obj.type.name == "Video" %}
{% endif %} {# finding text distracting,
{{obj.name}}
#}
{% endif %} {% endfor %} {% if grouping == "None" %}
{% endif %}
{% endblock main_content %} {% block script_content %} {% endblock script_content %}