ttvdrops/templates/twitch/emote_gallery.html
Joakim Helleśen 4663a827e4
All checks were successful
Deploy to Server / deploy (push) Successful in 10s
Make templates sexier
2026-03-11 23:38:31 +01:00

19 lines
659 B
HTML

{% extends "base.html" %}
{% load image_tags %}
{% block title %}
Emotes
{% endblock title %}
{% block content %}
<h1>Emotes</h1>
{% for emote in emotes %}
<!-- Emote from campaign {{ emote.campaign.name }} -->
<!-- https://ttvdrops.lovinator.space{{ emote.image_url }} -->
<a href="{% url 'twitch:campaign_detail' emote.campaign.twitch_id %}"
title="{{ emote.campaign.name }}"
style="display: inline-block">
{% picture emote.image_url alt="Emote" width=96 height=96 style="max-width: 96px; max-height: 96px" %}
</a>
{% empty %}
<p>No drop campaigns with emotes found.</p>
{% endfor %}
{% endblock content %}