]> git.phdru.name Git - m_librarian.git/blob - m_librarian/web/views/list_authors.tmpl
Feat(web): Search authors
[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>$title</h1>
6
7 #if $authors
8   <table>
9   #for $author in $authors
10   <tr>
11     <td>$author.fullname</td>
12   </tr>
13   #end for
14   </table>
15 #else
16   <p>Не найдено ни одного автора!</p>
17 #end if
18 #end def