view.j2 205 B

123456
  1. {% extends "layout/backend.j2" %}
  2. {% block content %}
  3. <h1>Title: {{ page.title }}</h1>
  4. <a href="{{ url_for('backend.edit_page', page_id=page.id) }}">Edit</a><br>
  5. <p>{{ page.content() }}</p>
  6. {% endblock %}