{% extends 'base.html.j2' %} {% block title %} Viewing {{ character_data.name }} {% endblock %} {% block content_before %} Viewing {{ character_data.name }} {% endblock %} {% block content %}
{% with character=character_data%} {% include 'partials/_character.html.j2' %} {% endwith %}
{% include 'partials/_charxml.html.j2'%}
{% endblock content %} {% block content_after %}

Properties


{% for property in character_data.properties_owner %} {% include 'partials/_property.html.j2' %} {% endfor %}
{% endblock content_after %}