diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-03 21:18:10 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-03 21:18:10 -0800 |
commit | 03df0b8a6d1285fa4aa17e6c4216dd2716a9ac47 (patch) | |
tree | ce6cc7f35a038ff5da26b86184d83441604de024 /python/fatcat_web/templates/base.html | |
parent | 422a8cc47489aa44b852ff0add1ef6ea63cfc1ff (diff) | |
download | fatcat-03df0b8a6d1285fa4aa17e6c4216dd2716a9ac47.tar.gz fatcat-03df0b8a6d1285fa4aa17e6c4216dd2716a9ac47.zip |
account page and renaming
Diffstat (limited to 'python/fatcat_web/templates/base.html')
-rw-r--r-- | python/fatcat_web/templates/base.html | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/python/fatcat_web/templates/base.html b/python/fatcat_web/templates/base.html index 892ca788..27b163d2 100644 --- a/python/fatcat_web/templates/base.html +++ b/python/fatcat_web/templates/base.html @@ -34,7 +34,7 @@ {{ current_user.username }} <i class="dropdown icon"></i> <div class="menu"> <a class="item" href="/editgroup/current"><i class="edit icon"></i>Edits in Progress</a> - <a class="item" href="/editor/{{ current_user.id }}/changelog"><i class="history icon"></i>History</a> + <a class="item" href="/editor/{{ current_user.editor_id }}/changelog"><i class="history icon"></i>History</a> <div class="divider"></div> <a class="item" href="/auth/account"><i class="user icon"></i>Account</a> <a class="item" href="/auth/logout"><i class="sign out icon"></i>Logout</a> @@ -51,6 +51,19 @@ <!-- 4em top margin is "enough" --> <main class="ui main container" style="margin-top: 6em; margin-bottom: 2em;"> +{% with messages = get_flashed_messages() %} + {% if messages %} + <div class="ui message"> + {# Needs more javascript: <i class="close icon"></i> #} + <div class="header">Now Hear This!</div> + <ul class="list"> + {% for message in messages %} + <li>{{ message }} + {% endfor %} + </ul> + </div> + {% endif %} +{% endwith %} {% block fullbody %} <div class="ui container text"> {% block body %}Nothing to see here.{% endblock %} |