2021-01-19 16:13:08 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block title %}{{ search_term }} - {{ domain }}{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2021-01-23 15:20:10 +01:00
|
|
|
<p>{{ results.total }} results</p>
|
2021-01-19 16:13:08 +01:00
|
|
|
|
2021-07-18 00:52:53 +02:00
|
|
|
<hr>
|
2021-07-18 00:10:24 +02:00
|
|
|
<div id="wrap">
|
|
|
|
{% for result in results.data %}
|
|
|
|
<div class="result-wrapper">
|
|
|
|
<a href="/{{ domain }}/videos/watch/{{ result.uuid }}">
|
|
|
|
<img src="https://{{ domain }}{{ result.thumbnailPath }}" height="150"/>
|
|
|
|
</a>
|
|
|
|
|
|
|
|
<div class="result-info">
|
|
|
|
<a href="/{{ domain }}/videos/watch/{{ result.uuid }}">{{ result.name }}</a>
|
|
|
|
<br>
|
|
|
|
{{ result.views }} Views
|
|
|
|
<br>
|
2021-07-29 13:50:54 +02:00
|
|
|
<a href="/{{ domain }}/video-channels/{{ result.channel.name }}@{{ result.channel.host }}">
|
2021-07-18 00:10:24 +02:00
|
|
|
<b>{{ result.channel.displayName }}</b>
|
|
|
|
</a>
|
|
|
|
<br>
|
|
|
|
<a href="/{{ domain }}/accounts/{{ result.account.name }}@{{ result.account.host }}">
|
|
|
|
{{ result.account.name }}@{{ result.account.host }}
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2021-07-18 00:52:53 +02:00
|
|
|
<hr>
|
2021-07-18 00:10:24 +02:00
|
|
|
|
2021-01-19 16:13:08 +01:00
|
|
|
{% endblock %}
|