32 lines
836 B
HTML
32 lines
836 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ search_term }} - {{ domain }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<p>{{ amount }} results</p>
|
|
|
|
<table>
|
|
{% for result in results %}
|
|
<tr>
|
|
<td>
|
|
<a href="/{{ domain }}/videos/watch/{{ result.uuid }}">
|
|
<img src="https://{{ domain }}/{{ result.thumbnailPath }}" height="150"/>
|
|
</a>
|
|
</td>
|
|
<td>
|
|
<a href="/{{ domain }}/videos/watch/{{ result.uuid }}">{{ result.name }}</a>
|
|
<br>
|
|
{{ result.views }} Views
|
|
<br>
|
|
<a href="/{{ domain }}/accounts/{{ result.channel.name }}@{{ result.channel.host }}">
|
|
<b>{{ result.channel.displayName }}</b>
|
|
</a>
|
|
<br>
|
|
<a href="/{{ domain }}/accounts/{{ result.account.name }}@{{ result.account.host }}">
|
|
{{ result.account.name }}@{{ result.account.host }}
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% endblock %}
|