phpcomposeryggdrasilbittorrentjs-lesssphinxalt-websymfonydistributedsocial-networkcatalogtorrentmagnetwikitrackerfederatedsqlite
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
3.9 KiB
69 lines
3.9 KiB
<form class="margin-t-16-px" name="search" method="get" action="{{ path('torrent_search') }}"> |
|
<input class="min-width-200-px" type="text" name="query" value="{{ query }}" placeholder="{{ 'Keyword, file, hash...' | trans }}" /> |
|
<input {% if query %}class="button-green"{% endif %} type="submit" value="{{ 'Search' | trans }}" /> |
|
{% if filter %} |
|
<input type="hidden" name="filter" value="true" /> |
|
<div class="text-left"> |
|
<div class="margin-t-16-px margin-b-4-px padding-x-4-px text-right"> |
|
{{ 'Locales' | trans }} |
|
</div> |
|
<div class="padding-t-16-px padding-b-8-px padding-x-24-px border-top-default"> |
|
{% for locale in locales | sort %} |
|
{#{% if locale.total %}#} |
|
<div class="margin-t-4-px margin-b-8-px margin-r-8-px display-inline-block min-width-120-px"> |
|
{% if locale.checked %} |
|
<input name="locales[]" id="{{ locale.value }}" type="checkbox" value="{{ locale.value }}" checked="checked" /> |
|
{% else %} |
|
<input name="locales[]" id="{{ locale.value }}" type="checkbox" value="{{ locale.value }}" /> |
|
{% endif %} |
|
<label class="margin-x-4-px" for="{{ locale.value }}"> |
|
{{ locale.value | locale_name(locale.value) | u.title }} |
|
<span class="text-color-night"> |
|
({{ locale.total }}) |
|
</span> |
|
</label> |
|
</div> |
|
{#{% endif %}#} |
|
{% endfor %} |
|
</div> |
|
<div class="margin-b-4-px padding-x-4-px text-right"> |
|
{{ 'Categories' | trans }} |
|
</div> |
|
<div class="padding-t-16-px padding-b-8-px padding-x-24-px border-top-default"> |
|
{% for category in categories | sort %} |
|
{#{% if category.total %}#} |
|
<div class="margin-t-4-px margin-b-8-px margin-r-8-px display-inline-block min-width-120-px"> |
|
{% if category.checked %} |
|
<input name="categories[]" id="{{ category.value }}" type="checkbox" value="{{ category.value }}" checked="checked" /> |
|
{% else %} |
|
<input name="categories[]" id="{{ category.value }}" type="checkbox" value="{{ category.value }}" /> |
|
{% endif %} |
|
<label class="margin-x-4-px" for="{{ category.value }}"> |
|
{{ category.value | trans_category | u.title }} |
|
<span class="text-color-night"> |
|
({{ category.total }}) |
|
</span> |
|
</label> |
|
</div> |
|
{#{% endif %}#} |
|
{% endfor %} |
|
</div> |
|
<div class="margin-b-4-px padding-x-4-px text-right"> |
|
{{ 'other' | trans | u.title }} |
|
</div> |
|
<div class="padding-t-16-px padding-b-8-px padding-x-24-px border-top-default"> |
|
{% if sensitive.checked %} |
|
<input name="sensitive" id="sensitive" type="checkbox" value="true" checked="checked" /> |
|
{% else %} |
|
<input name="sensitive" id="sensitive" type="checkbox" value="true" /> |
|
{% endif %} |
|
<label class="margin-x-4-px" for="sensitive"> |
|
{{ 'Sensitive' | trans }} |
|
<span class="text-color-night"> |
|
({{ sensitive.total }}) |
|
</span> |
|
</label> |
|
</div> |
|
</div> |
|
{% endif %} |
|
</form> |