diff options
author | Martin Green <martin.speleo@gmail.com> | 2011-08-08 12:40:47 +0100 |
---|---|---|
committer | Martin Green <martin.speleo@gmail.com> | 2011-08-08 12:40:47 +0100 |
commit | fe1989001cca6c00f2b2fd75e47a57127d51926a (patch) | |
tree | 4cd3eff7d4fb85320f8124dc70a860b96f7fb173 | |
parent | 3205e1752ca43f956da8a2b8d96dc1a1350d3022 (diff) | |
download | troggle-fe1989001cca6c00f2b2fd75e47a57127d51926a.tar.gz troggle-fe1989001cca6c00f2b2fd75e47a57127d51926a.tar.bz2 troggle-fe1989001cca6c00f2b2fd75e47a57127d51926a.zip |
template changes. Fix link to css.
-rw-r--r-- | templates/expobase.html | 2 | ||||
-rw-r--r-- | templates/menu.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/expobase.html b/templates/expobase.html index 0ef74c1..5cadb61 100644 --- a/templates/expobase.html +++ b/templates/expobase.html @@ -3,7 +3,7 @@ <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>{% block title %}{% endblock %}</title> -<link rel="stylesheet" type="text/css" href="css/main2.css" /> +<link rel="stylesheet" type="text/css" href="/css/main2.css" /> {% block extrahead %}{% endblock %} </head> <body {% block bodyattrs %}{% endblock %}> diff --git a/templates/menu.html b/templates/menu.html index f74aed4..65b8544 100644 --- a/templates/menu.html +++ b/templates/menu.html @@ -7,6 +7,6 @@ <li><a href="/indxal.htm">Caves</a></li> <li><a href="/handbook/index.htm">Handbook</a></li> <li><a href="/pubs.htm">Reports</a></li> -{% if editable %}<li><a href="{% url editflatpage path %}">Edit</a></li>{% endif %} +{% if editable %}<li><a href="{% url editflatpage path %}" class="editlink"><strong>Edit this page</strong></a></li>{% endif %} </ul> {% endif %} |