All checks were successful
Deploy to Server / deploy (push) Successful in 20s
32 lines
1.1 KiB
HTML
32 lines
1.1 KiB
HTML
{% extends "base.html" %}
|
|
{% block title %}
|
|
{{ page_title }}
|
|
{% endblock title %}
|
|
{% block content %}
|
|
<main>
|
|
<h1>YouTube channels with rewards.</h1>
|
|
<p>
|
|
<a href="https://support.google.com/youtube/answer/9024948?hl=en&co=GENIE.Platform%3DAndroid">YouTube Help Center</a> has the following channels listed where you can earn rewards:
|
|
</p>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Channel</th>
|
|
<th>Organization</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for group in organization_groups %}
|
|
{% for item in group.channels %}
|
|
<tr>
|
|
<td>
|
|
<a href="{{ item.url }}">{{ item.channel }}</a>
|
|
</td>
|
|
<td>{{ group.organization }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</main>
|
|
{% endblock content %}
|