There is not much value to be gotten out of creating Jinja blocks and appending them to a list when nothing particularly interesting is done with the list. With changes to move more towards semantic HTML, as well as more ease of access to data in the template engine in the new code, it is preferable to leave block division to the page template by making it a property of the <section> tag. This also allows creating blocks in Jinja iterators, which is not possible to do cleanly in the idiom being replaced here.
36 lines
1.5 KiB
Django/Jinja
36 lines
1.5 KiB
Django/Jinja
{% extends "lexicon.jinja" %}
|
|
{% set current_page = "characters" %}
|
|
{% block title %}Character | {{ lexicon_title }}{% endblock %}
|
|
|
|
{% block main %}
|
|
<section>
|
|
<h1>Characters</h1>
|
|
{% set players = memq.get_players_in_lexicon(db, g.lexicon.id)|list %}
|
|
{% set characters = charq.get_in_lexicon(db, g.lexicon.id)|list %}
|
|
<p>This lexicon has <b>{{ players|count }}</b> player{% if players|count > 1 %}s{% endif %} and <b>{{ characters|count }}</b> character{% if characters|count > 1 %}s{% endif %}.</p>
|
|
{% for message in get_flashed_messages() %}
|
|
<span style="color:#ff0000">{{ message }}</span><br>
|
|
{% endfor %}
|
|
<ul class="blockitem-list">
|
|
{% if characters|map(attribute="user_id")|select("equalto", current_user.id)|list|count < g.lexicon.character_limit %}
|
|
<li>
|
|
<h3><a href="{{ url_for('lexicon.characters.new', lexicon_name=lexicon_name) }}">Create a new character</a></h3>
|
|
<p>You have created {{ characters|map(attribute="user_id")|select("equalto", current_user.id)|list|count }} out of {{ g.lexicon.character_limit }} allowed characters.</p>
|
|
</li>
|
|
{% endif %}
|
|
{% for character in characters %}
|
|
<li>
|
|
<h3>{{ character.name }}</h3>
|
|
{% if character.user == current_user %}
|
|
<pre>{{ character.signature }}</pre>
|
|
{% endif %}
|
|
<p>Player: {{ character.user.username }}</p>
|
|
{% if character.user == current_user %}
|
|
<p><a href="{{ url_for('lexicon.characters.edit', lexicon_name=lexicon_name, character_id=character.public_id) }}">Edit this character</a></p>
|
|
{% endif %}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</section>
|
|
{% endblock %}
|