{% extends "layout.html" %} {% block content %}
{% if character.image_path %} {{ character.name }} {% else %} No Image Attached {% endif %}
0%
{% if preview_image %}
Latest Preview
Preview
{% else %}
Latest Preview
Preview
{% endif %}
Tags
{% for tag in character.data.tags %} {{ tag }} {% endfor %}

{{ character.name }}

Back to Gallery
{% for section, details in character.data.items() %} {% if section not in ['character_id', 'tags', 'name'] and details is mapping %}
{{ section.replace('_', ' ') }}
{% if section == 'identity' %}
Character ID
{{ character.character_id }}
{% endif %} {% for key, value in details.items() %}
{{ key.replace('_', ' ') }}
{{ value if value else '--' }}
{% endfor %}
{% endif %} {% endfor %}
{% endblock %} {% block scripts %} {% endblock %}