mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2025-04-03 09:21:48 +01:00
Allow pages to be rendered when the body tag has attributes. Put an edit link on the homepage.
This commit is contained in:
parent
13fe89af9f
commit
c66ecc4d7f
@ -56,7 +56,7 @@ def flatpage(request, path):
|
|||||||
if path.endswith(".htm") or path.endswith(".html"):
|
if path.endswith(".htm") or path.endswith(".html"):
|
||||||
html = o.read()
|
html = o.read()
|
||||||
|
|
||||||
m = re.search(r"<head>(.*)</head>.*<body>(.*)</body>", html, re.DOTALL)
|
m = re.search(r"<head>(.*)</head>.*<body[^>]*>(.*)</body>", html, re.DOTALL)
|
||||||
if m:
|
if m:
|
||||||
head, body = m.groups()
|
head, body = m.groups()
|
||||||
else:
|
else:
|
||||||
|
@ -5,6 +5,8 @@
|
|||||||
<body{% if homepage %} id="homepage"{% endif %}>
|
<body{% if homepage %} id="homepage"{% endif %}>
|
||||||
{{ body|safe }}
|
{{ body|safe }}
|
||||||
|
|
||||||
{% include "menu.html" %}
|
{% if homepage %}{% if editable %}<a href="{% url editflatpage path %}">Edit</a>{% endif %}{%else %}{% include "menu.html" %}{% endif %}
|
||||||
|
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user