aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fatcat/routes.py2
-rw-r--r--fatcat/templates/base.html6
2 files changed, 4 insertions, 4 deletions
diff --git a/fatcat/routes.py b/fatcat/routes.py
index 75411da9..f6d6c4e3 100644
--- a/fatcat/routes.py
+++ b/fatcat/routes.py
@@ -79,7 +79,7 @@ def editgroup_view(ident):
return render_template('editgroup_view.html', editgroup=entity)
@app.route('/editgroup/current', methods=['GET'])
-def editgroup_current(ident):
+def editgroup_current():
eg = api.get_or_create_edit_group()
return redirect('/editgroup/{}'.format(eg.id))
diff --git a/fatcat/templates/base.html b/fatcat/templates/base.html
index f9fc809a..697705c3 100644
--- a/fatcat/templates/base.html
+++ b/fatcat/templates/base.html
@@ -34,10 +34,10 @@
<div class="ui simple dropdown item">
acidburn <i class="dropdown icon"></i>
<div class="menu">
- <a class="item" href="#">Open Submissions</a>
- <a class="item" href="#">Edit History</a>
+ <a class="item" href="/editgroup/current">Open Submissions</a>
+ <a class="item" href="/editor/admin/changelog">Edit History</a>
<div class="divider"></div>
- <a class="item" href="#">Account</a>
+ <a class="item" href="/editor/admin">Account</a>
<a class="item" href="/logout">Logout</a>
</div>
</div>