removing dead code. moving script to bottom

This commit is contained in:
Eric Bidelman 2013-06-20 19:56:30 -07:00
Родитель 9bd80bd31a
Коммит 9c0218da10
5 изменённых файлов: 10 добавлений и 13 удалений

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -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> &nbsp; <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 %}&nbsp; <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>

Просмотреть файл

@ -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 = []