]> git.phdru.name Git - m_librarian.git/blob - m_librarian/web/views/download.tmpl
Feat(web): Catch and report errors on downloading
[m_librarian.git] / m_librarian / web / views / download.tmpl
1 #encoding utf-8
2 #extends views.layout
3 #attr $title = 'Загрузка'
4 #def body
5 <h1>$title</h1>
6
7 #if $getVar('error', None)
8 <p style="color: red">$error</p>
9 #else
10 <p>$message</p>
11 #end if
12 #end def