forked from expo/troggle
ffb5d7bdda
url in templates now requires quotes roung the first arg USE_TZ added
8 lines
241 B
HTML
8 lines
241 B
HTML
{% extends "expobase.html" %}
|
|
{% block title %}Page not found {{ path }}{% endblock %}
|
|
{% block body %}
|
|
<h1>Page not found {{ path }}</h1>
|
|
<a href="{%url "editflatpage" path %}">Create this page.</a>
|
|
{% include "menu.html" %}
|
|
{% endblock %}
|