Add product & date on html pages

This commit is contained in:
Calixte Denizet 2017-02-27 10:14:01 +01:00
Родитель fdf6ebae73
Коммит d101bf3640
3 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -18,6 +18,8 @@ def listdirs():
channel,
date)
return render_template('list.html',
product=product,
date=date,
quote=quote,
base_url=url,
dirs=dirs)
@ -36,6 +38,8 @@ def crashes():
return 'crash' if n == 1 else 'crashes'
return render_template('crashes.html',
product=product,
date=date,
plural=plural,
sortfun=sorted,
crashes=crashes)

Просмотреть файл

@ -5,6 +5,8 @@
<title>Files</title>
</head>
<body>
<h1>{{ product }} &mdash; {{ date }}</h1>
<br>
<ul>
{% for file in sortfun(crashes.keys()) -%}
<li>{{ file }}

Просмотреть файл

@ -5,6 +5,8 @@
<title>Directories</title>
</head>
<body>
<h1>{{ product }} &mdash; {{ date }}</h1>
<br>
<ul>
{% for d in dirs -%}
<li><a href="{{ (base_url + quote(d, safe=''))|safe}}">{{ d }}</a></li>