2014-09-27 12:33:22 +02:00
|
|
|
{% from 'oscar/macros.html' import icon %}
|
|
|
|
|
2015-01-01 19:52:05 +01:00
|
|
|
<h4 class="result_header">{% if result.engine~".png" in favicons %}<img width="32" height="32" class="favicon" src="{{ url_for('static', filename='img/icons/'+result.engine+'.png') }}" alt="{{ result.engine }}" /> {% endif %}<a href="{{ result.url }}">{{ result.title|safe }}</a></h4>
|
2014-09-27 12:33:22 +02:00
|
|
|
|
2014-12-08 01:22:54 +01:00
|
|
|
{% if result.publishedDate %}<time class="text-muted" datetime="{{ result.pubdate }}" >{{ result.publishedDate }}</time>{% endif %}
|
|
|
|
<small><a class="text-info" href="https://web.archive.org/web/{{ result.url }}">{{ icon('link') }} {{ _('cached') }}</a></small>
|
2014-09-27 12:33:22 +02:00
|
|
|
|
2015-01-10 19:40:27 +01:00
|
|
|
<p class="result-content">{{ icon('transfer') }} {{ _('Seeder') }} <span class="badge">{{ result.seed }}</span> • {{ _('Leecher') }} <span class="badge">{{ result.leech }}</span>
|
|
|
|
{% if result.filesize %}</br>{{ icon('floppy-disk') }} {{ _('Filesize') }}
|
|
|
|
<span class="badge">
|
|
|
|
{% if result.filesize < 1024 %}{{ result.filesize }} Byte
|
|
|
|
{% elif result.filesize < 1024*1024 %}{{ '{0:0.2f}'.format(result.filesize/1024) }} kb
|
|
|
|
{% elif result.filesize < 1024*1024*1024 %}{{ '{0:0.2f}'.format(result.filesize/1024/1024) }} MB
|
|
|
|
{% elif result.filesize < 1024*1024*1024*1024 %}{{ '{0:0.2f}'.format(result.filesize/1024/1024/1024) }} GB{% endif %}
|
|
|
|
</span>{% endif %}
|
|
|
|
{% if result.files %}</br>{{ icon('file') }} {{ _('Number of Files') }} <span class="badge">{{ result.files }}</span>{% endif %}</p>
|
|
|
|
<p class="result-content">
|
|
|
|
<a href="{{ result.magnetlink }}" class="magnetlink">{{ icon('magnet') }} magnet link</a>
|
|
|
|
{% if result.torrentfile %}</br><a href="{{ result.torrentfile }}" class="torrentfile">{{ icon('download-alt') }} torrent file</a>{% endif %}
|
|
|
|
</p>
|
2014-09-27 12:33:22 +02:00
|
|
|
|
2014-11-03 10:39:47 +01:00
|
|
|
{% if result.content %}<p class="result-content">{{ result.content|safe }}</p>{% endif %}
|
2014-09-27 12:33:22 +02:00
|
|
|
|
2014-11-02 13:00:28 +01:00
|
|
|
<div class="clearfix"></div>
|
|
|
|
|
2014-09-27 12:33:22 +02:00
|
|
|
<span class="label label-default pull-right">{{ result.engine }}</span>
|
2014-10-03 13:16:30 +02:00
|
|
|
<p class="text-muted">{{ result.pretty_url }}</p>
|