]> git.phdru.name Git - m_librarian.git/blobdiff - m_librarian/web/views/index.tmpl
Feat(web:books): Поиск по названиям книг
[m_librarian.git] / m_librarian / web / views / index.tmpl
index 9832186812d628189bec49f712a7cf65cb49b863..a16ff1a06c5278114b8d67105caeca4b7f37713f 100644 (file)
@@ -1,9 +1,14 @@
+#encoding utf-8
 #extends views.layout
-#attr $title = 'Index'
+#attr $title = 'Поиск'
 #def body
-<h1>Index</h1>
+<h1>Поиск авторов</h1>
 
-<p>Hello, World!</p>
+#from views.search_authors_form import search_authors_form
+$search_authors_form(searchList=$searchList)
 
-<p><a href="/quit">Quit</a></p>
+<h1>Поиск книг</h1>
+
+#from views.search_books_form import search_books_form
+$search_books_form(searchList=$searchList)
 #end def