Add ids to tags; use pygments to color JSON
This commit is contained in:
parent
f83fee99f3
commit
8f438aca2d
18 changed files with 365 additions and 211 deletions
|
|
@ -3,16 +3,16 @@
|
|||
Games
|
||||
{% endblock title %}
|
||||
{% block content %}
|
||||
<h1>Organizations</h1>
|
||||
<h1 id="page-title">Organizations</h1>
|
||||
{% if orgs %}
|
||||
<ul>
|
||||
<ul id="org-list">
|
||||
{% for organization in orgs %}
|
||||
<li>
|
||||
<li id="org-{{ organization.id }}">
|
||||
<a href="{% url 'twitch:organization_detail' organization.id %}">{{ organization.name }}</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% else %}
|
||||
No games found.
|
||||
<p>No games found.</p>
|
||||
{% endif %}
|
||||
{% endblock content %}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue