aboutsummaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2018-04-07 15:44:10 +0100
committerGravatar Gareth Coles <[email protected]>2018-04-07 15:44:10 +0100
commit8e758edc264c5cb5ce10d23f8937e5d66e1913b0 (patch)
tree7e3641a16fbedf3b21da7663462651d516d29d03 /templates
parentAllow helpers to edit pages also (diff)
[Wiki] Shorten edit/view links in sidebar
Diffstat (limited to 'templates')
-rw-r--r--templates/wiki/base.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/wiki/base.html b/templates/wiki/base.html
index dd3c1dff..eb697677 100644
--- a/templates/wiki/base.html
+++ b/templates/wiki/base.html
@@ -29,14 +29,14 @@
{% if can_edit and current_page == "page" %}
<li>
<a href="{{ url_for("wiki.edit", page=page) }}">
- <i class="fas fa-pencil-alt"></i> &nbsp;Edit Page
+ <i class="fas fa-pencil-alt"></i> &nbsp;Edit
</a>
</li>
<li class="uk-nav-divider"></li>
{% elif current_page == "edit" %}
<li>
<a href="{{ url_for("wiki.page", page=page) }}">
- <i class="fas fa-arrow-left fa-fw"></i> &nbsp;View Page
+ <i class="fas fa-arrow-left fa-fw"></i> &nbsp;Back
</a>
</li>
<li class="uk-nav-divider"></li>