]> git.phdru.name Git - m_librarian.git/blob - m_librarian/web/views/list_authors.tmpl
f7377ba29c5fc835f717d06f8e561fe17883eca1
[m_librarian.git] / m_librarian / web / views / list_authors.tmpl
1 #encoding utf-8
2 #extends views.layout
3 #attr $title = 'Список авторов'
4 #def body
5 <h1>Поиск авторов</h1>
6 #from views.search_authors_form import search_authors_form
7 $search_authors_form(searchList=$searchList)
8
9 <h1>$title</h1>
10
11 #if $authors
12   <table>
13   #for $author in $authors
14   <tr>
15     <td><a href="/books-by-author/$author.id/">$author.fullname</a></td>
16   </tr>
17   #end for
18   </table>
19 #else
20   <p>Не найдено ни одного автора!</p>
21 #end if
22 #end def