22 lines
653 B
HTML
22 lines
653 B
HTML
{% load i18n %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
|
|
<meta http-equiv="Content-Language" content="en-us">
|
|
<meta name="robots" content="NONE,NOARCHIVE">
|
|
<title>{% blocktranslate %}Index of {{ directory }}{% endblocktranslate %}</title>
|
|
</head>
|
|
<body>
|
|
<h1>{% blocktranslate %}Index of {{ directory }}{% endblocktranslate %}</h1>
|
|
<ul>
|
|
{% if directory != "/" %}
|
|
<li><a href="../">../</a></li>
|
|
{% endif %}
|
|
{% for f in file_list %}
|
|
<li><a href="{{ f|urlencode }}">{{ f }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</body>
|
|
</html>
|