Tidy up after a long absence

This commit is contained in:
Neill Cox 2025-03-09 17:58:06 +11:00
parent 3931d2ccbd
commit fea7c0eeb9
28 changed files with 2444 additions and 376 deletions

View file

@ -0,0 +1,21 @@
{% extends "base.html" %}
{% block content %}
<h1>{{ campaign.name }}</h1>
<h2>Players</h2>
<ul>
{% for player in campaign.campaignplayer_set.all %}
<li><a href="#">{{ player }}</a></li>
{% endfor %}
</ul>
<h2>Characters</h2>
<ul>
{% for character in campaign.gurpscharacter_set.all %}
<a href="#">{{ character.name }} </a>[ <a href="#"> {{ character.player.user.get_full_name }} </a>]
{% endfor %}
</ul>
{% endblock %}