diff options
Diffstat (limited to 'python/fatcat_web/templates/base.html')
| -rw-r--r-- | python/fatcat_web/templates/base.html | 32 | 
1 files changed, 25 insertions, 7 deletions
| diff --git a/python/fatcat_web/templates/base.html b/python/fatcat_web/templates/base.html index 4b3b7e0b..cce841e5 100644 --- a/python/fatcat_web/templates/base.html +++ b/python/fatcat_web/templates/base.html @@ -29,23 +29,41 @@            </div>          </form>        </div> +{% if current_user.is_authenticated %}        <div class="ui simple dropdown item"> -      demo-user <i class="dropdown icon"></i> +      {{ 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/aaaaaaaaaaaabkvkaaaaaaaaae/changelog"><i class="history icon"></i>History</a> +          <a class="item" href="#"><i class="edit icon"></i>Edits in Progress</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="/editor/aaaaaaaaaaaabkvkaaaaaaaaae"><i class="user icon"></i>Account</a> -          <a class="item" href="/logout"><i class="sign out icon"></i>Logout</a> +          <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>          </div>        </div> - +{% else %} +      <div class="ui simple item"> +        <a href="/auth/login">Login/Signup</a> +      </div> +{% endif %}      </div>    </div>  </header>  <!-- 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 %} @@ -62,7 +80,7 @@        <a class="item" href="https://guide.{{ config.FATCAT_DOMAIN }}/sources.html">Sources</a>        <a class="item" href="{% if config.FATCAT_DOMAIN == "fatcat.wiki" %}https://stats.uptimerobot.com/GM9YNSrB0{% elif config.FATCAT_DOMAIN =="qa.fatcat.wiki" %}https://stats.uptimerobot.com/WQ8wAUREA{% else %}#{% endif %}">Status</a>        <a class="item" href="https://guide.{{ config.FATCAT_DOMAIN }}/bulk_exports.html">Bulk Exports</a> -      <a class="item" href="https://github.com/internetarchive/fatcat/">Source Code (<code>{{ config.GIT_REVISION.decode() }}</code>)</a> +      <a class="item" href="https://github.com/internetarchive/fatcat/">Source Code (<code>{{ config.GIT_REVISION }}</code>)</a>      </div>    </div>  </footer> | 
