ittech/w12/views/search.twig
2023-03-26 16:58:46 +07:00

47 lines
No EOL
1.4 KiB
Twig
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "template.twig" %}
{% block title %}Импорт пользователей{% endblock %}
{% block head %}
{{ parent() }}
<style>
#imageDrop {
display: flex;
align-content: center;
justify-content: center;
align-items: center;
height: 5rem;
border: 0.2rem dashed gray;
border-radius: 1rem;
}
</style>
{% endblock %}
{% block content %}
<b>{{user.login}}</b> что-то ищет 🤔 <a href="/">На главную</a>
<hr>
<form action="/search" method="get">
<input type="text" name="search" placeholder="Поиск..." value="{{search}}">
<select name="author">
<option value="-1">Все авторы</option>
{% for item in authors %}
<option value="{{item.id}}" {% if item.id == author %}selected{% endif %}>{{item.login}}</option>
{% endfor %}
</select>
<input type="submit" value="Найти">
</form>
{% if images %}
<b>Результаты поиска:</b>
<div class="images">
{% for image in images %}
<a href="image/{{image.id}}">
<img src="/images?filename={{image.filename}}" alt="{{image.filename}}">
</a>
{% else %}
<p>Пусто</p>
{% endfor %}
{% else %}
<p>Пусто</p>
{% endif %}
</div>
{% endblock %}