Modify terminology

This commit is contained in:
Joakim Hellsén 2026-03-16 23:41:19 +01:00
commit 1f5e931af6
Signed by: Joakim Hellsén
SSH key fingerprint: SHA256:/9h/CsExpFp+PRhsfA0xznFx2CGfTT5R/kpuFfUgEQk
3 changed files with 73 additions and 33 deletions

View file

@ -1,6 +1,6 @@
{% extends "base.html" %}
{% block title %}
YouTube channels with rewards
{{ page_title }}
{% endblock title %}
{% block content %}
<main>
@ -14,17 +14,17 @@
<thead>
<tr>
<th>Channel</th>
<th>Partner</th>
<th>Organization</th>
</tr>
</thead>
<tbody>
{% for group in partner_groups %}
{% for group in organization_groups %}
{% for item in group.channels %}
<tr>
<td>
<a href="{{ item.url }}" rel="noopener" target="_blank">{{ item.channel }}</a>
</td>
<td>{{ group.partner }}</td>
<td>{{ group.organization }}</td>
</tr>
{% endfor %}
{% endfor %}