The unit testing was for commands was split out from src/objects/tests.py into the new src/commands/default/test.py in order to keep the testing modules thematically grouped with the things they are testing.
12 lines
214 B
HTML
12 lines
214 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block header_ext %}
|
|
{% endblock %}
|
|
|
|
{% block sidebar %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1 id="alt-layout">{{flatpage.title}}</h1>
|
|
{{flatpage.content}}
|
|
{% endblock %}
|