diff options
-rw-r--r-- | templates/base.html | 2 | ||||
-rw-r--r-- | templates/expedition.html | 2 | ||||
-rw-r--r-- | templates/logbookentry.html | 2 | ||||
-rw-r--r-- | templates/person.html | 3 | ||||
-rw-r--r-- | templates/qm.html | 5 |
5 files changed, 0 insertions, 14 deletions
diff --git a/templates/base.html b/templates/base.html index 38f5266..a1e9f6b 100644 --- a/templates/base.html +++ b/templates/base.html @@ -22,9 +22,7 @@ {% if user.person %}(<a href="{{ user.person.get_absolute_url }}">{{ user.person }}</a>){% endif %} | <a <a href='/accounts/logout/'>Log out</a> {% else %} <a href='/accounts/login/'>Log in</a> {% endif %} {% endblock%} - {% block editLink %} - {% endblock %} </div> </div> <div class="toolbarlinks"> diff --git a/templates/expedition.html b/templates/expedition.html index 4dd2a45..783824a 100644 --- a/templates/expedition.html +++ b/templates/expedition.html @@ -1,7 +1,5 @@ {% extends "base.html" %} {% block title %}Expedition {{expedition.name}}{% endblock %} -{% block editLink %}<a href={{expedition.get_admin_url}}>Edit expedition {{expedition}}</a>{% endblock %} - {% block related %} {% endblock %} diff --git a/templates/logbookentry.html b/templates/logbookentry.html index b23d47a..a0a80ca 100644 --- a/templates/logbookentry.html +++ b/templates/logbookentry.html @@ -2,8 +2,6 @@ <!-- logbookentry.html - this text visible because this template has been included --> {% block title %}Logbook {{logbookentry.id}}{% endblock %} - -{% block editLink %}<a href={{logbookentry.get_admin_url}}/>Edit logbook entry {{logbookentry|safe}}</a>{% endblock %} {% block content %} {% block related %}{% endblock %} diff --git a/templates/person.html b/templates/person.html index ad4b3a2..8128760 100644 --- a/templates/person.html +++ b/templates/person.html @@ -1,8 +1,5 @@ {% extends "base.html" %} {% block title %}Person {{person}}{% endblock %} - -{% block editLink %}| <a href={{person.get_admin_url}}>Edit person {{person}}</a>{% endblock %} - {% block contentheader %} <h2> {{person|safe}} </h2> {% endblock %} diff --git a/templates/qm.html b/templates/qm.html index be611f4..f2d0cf5 100644 --- a/templates/qm.html +++ b/templates/qm.html @@ -1,11 +1,6 @@ {% extends "base.html" %} {% load link %} {% block title %} QM: {{qm|safe}} {% endblock %} - -{% block editLink %}| <a href={{qm.get_admin_url}}>Edit QM {{qm|safe}}</a>{% endblock %} - - - {% block contentheader %} <table id="cavepage"> <tr> |