{% extends "mini_buildd/base.html" %} {% block title %}{% block titledup %}{{ route|title }} dir: /{{ path }}{% endblock %}{% endblock %} {% block tooltip %}Directory Listing{% endblock %} {% block content %} {% if view.mbd_scandir %} {% mbd_token as table_id %} {% mbd_datatable table_id order='[0, "asc"]' %} {% for direntry in view.mbd_scandir %} {% with mtime=direntry.stat.st_mtime|mbd_fromtimestamp %} {% endwith %} {% endfor %}
Name Size Modified
{% if direntry.is_dir %} Dir {{ direntry.name }} {% else %} File {{ direntry.name }} {% endif %} {{ direntry.stat.st_size }} {{ mtime|date:"r" }}
{% else %} {% mbd_file file_path=view.mbd_fullpath uri=view.mbd_static_uri %} {% endif %} {% endblock %}