17 lines
318 B
HTML
17 lines
318 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% load guild_extras %}
|
|
|
|
{% block content %}
|
|
<h1>Character: {{ character.name }}</h1>
|
|
|
|
<h2>
|
|
Played by:
|
|
<a href="{% url 'guild:player_detail' character.player.id %}">
|
|
{{ character.player.name }}
|
|
</a>
|
|
</h2>
|
|
|
|
<p>{{character.description|md|safe}}</p>
|
|
|
|
{% endblock content %} |