Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Unified Diff: appengine/isolate/templates/base.html

Issue 2047753002: Add hack to enable multilogin. (Closed) Base URL: git@github.com:luci/luci-py.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: appengine/isolate/templates/base.html
diff --git a/appengine/isolate/templates/base.html b/appengine/isolate/templates/base.html
index f0ce7ead438670f02c4fa1368f39b6c4d5c0c508..5c8f154eeb3f1ac9ee59f6ba15a2f0e22a9fc9fd 100644
--- a/appengine/isolate/templates/base.html
+++ b/appengine/isolate/templates/base.html
@@ -28,17 +28,8 @@ that can be found in the LICENSE file. -->
</head>
<body {% if onload is defined %}onload="{{onload}}"{% endif %}>
<div class="top_right_links">
- {% if nickname is defined %}
- {% if nickname %}
- {{ nickname }}
- {% else %}
- <a href="{{signin_link|safe }}">Sign in</a>
- {% endif %}
- <br>
- {% endif %}
- {% if now is defined %}
- {{now|datetimeformat}}<br>
- {% endif %}
+ <a href="{{signin_link|safe }}">{{nickname}}</a><br>
+ {{now|datetimeformat}}<br>
{% block floating %}
{% endblock %}
</div>

Powered by Google App Engine
This is Rietveld 408576698