Newer
Older
rpg_game / panel / templates / node.html
{% extends "base.html" %}
{% block title %}{{ title }} — Эдем-4{% endblock %}
{% block content %}
<p class="crumbs"><a href="/graph">← к дереву</a></p>
<h1>{{ title }}</h1>
<table class="detail">
  {% for label, html in rows %}
  <tr>
    <th>{{ label }}</th>
    <td>{{ html|safe }}</td>
  </tr>
  {% endfor %}
</table>
{% endblock %}