0

WebApp: поиск фильмов по базе

This commit is contained in:
2017-05-25 15:12:20 +03:00
parent ef1d31c3b6
commit a5c383360d
6 changed files with 86 additions and 3 deletions

View File

@@ -0,0 +1,17 @@
[#ftl]
[#include "header.inc.ftl"]
[#include "search.comp.ftl"]
<hr>
<div class="searchResult">
[#if cindocs?has_content]
<ol>
[#list cindocs as cinema]
<li><a href="${cinema.url}" target="_blank">[${cinema.typeWarez}] ${cinema.title}</a></li>
[/#list]
</ol>
[#else]
<p>Ничего не найдено.</p>
[/#if]
</div>
[#include "fother.inc.ftl"]