removing dead code. moving script to bottom
This commit is contained in:
Родитель
9bd80bd31a
Коммит
9c0218da10
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -116,7 +116,7 @@ header {
|
|||
// padding-left: 65px;
|
||||
// Larger bg logo.
|
||||
background: url(/static/img/chromium-128.png) no-repeat 10px 50%, #FAFAFA;
|
||||
background-size: 20%;
|
||||
background-size: 25%;
|
||||
padding-left: 125px;
|
||||
|
||||
// TODO: temporary for old flex box support.
|
||||
|
@ -129,6 +129,9 @@ header {
|
|||
line-height: 1;
|
||||
//white-space: nowrap;
|
||||
//width: -webkit-min-content;
|
||||
a {
|
||||
color: currentcolor;
|
||||
}
|
||||
}
|
||||
img {
|
||||
height: 45px;
|
||||
|
|
|
@ -22,10 +22,8 @@
|
|||
</form>
|
||||
</section>
|
||||
|
||||
{% for f in features %}
|
||||
<!-- <li><a href="/database/resource/{{r.key.id}}">[Edit]</a> <a href="{{r.url}}" target="_blank">{{r.title}}{% if r.subtitle %}: {{r.subtitle|safe}}{% endif %}</a> - {% for tag in r.tags %}{{tag}}{% if not forloop.last %}, {% endif %}{% endfor %} {% if r.draft %} <b>draft</b>{% endif %}</li> -->
|
||||
<li>{{f.feature_name}}</li>
|
||||
{% endfor %}
|
||||
|
||||
<script src="/static/js/admin/feature_form.js"></script>
|
||||
{% endblock %}
|
||||
|
||||
{% block js %}
|
||||
<script src="/static/js/admin/feature_form.js"></script>
|
||||
{% endblock %}
|
|
@ -2,7 +2,7 @@
|
|||
<aside>
|
||||
<!-- <img src="/static/img/chromium-128.png" alt="Chromium Logo"> -->
|
||||
<hgroup>
|
||||
<h1>{{APP_TITLE}}</h1>
|
||||
<h1><a href="/">{{APP_TITLE}}</a></h1>
|
||||
<span>a status of what we're up to</span>
|
||||
</hgroup>
|
||||
</aside>
|
||||
|
|
4
users.py
4
users.py
|
@ -38,10 +38,6 @@ class UserHandler(common.ContentHandler):
|
|||
if path[-1] == '/':
|
||||
return self.redirect(self.request.path.rstrip('/'))
|
||||
|
||||
# template_data = {
|
||||
# 'users': models.AppUser.all().fetch(None) # TODO(ericbidelman): memcache this.
|
||||
# }
|
||||
|
||||
users = models.AppUser.all().fetch(None) # TODO(ericbidelman): memcache this.
|
||||
|
||||
user_list = []
|
||||
|
|
Загрузка…
Ссылка в новой задаче