Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Minor tweaks
  • Loading branch information
Brian Klug committed Jan 9, 2012
1 parent ccf93e6 commit b720614
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main.py
Expand Up @@ -99,7 +99,7 @@ class LogHandler(webapp.RequestHandler):
""" Show log """ """ Show log """


def get(self): def get(self):
log = Login.all() log = Login.all().order("-created").fetch(100)
self.response.out.write(template.render('templates/log.html', { self.response.out.write(template.render('templates/log.html', {
'log': log 'log': log
})) }))
Expand Down
2 changes: 1 addition & 1 deletion templates/main.html
Expand Up @@ -5,7 +5,7 @@
<div class="grid_12 alpha omega"> <div class="grid_12 alpha omega">


<img border=0 src="/static/dojo400.png" style="margin:1.5em" width="400" height="141" /> <img border=0 src="/static/dojo400.png" style="margin:1.5em" width="400" height="141" />
<h2><b>100/100Mbps Fiber Internet</b> Members, login below to gain full access to the premium network. Guests may have unlimited free usage of our slower connection.</h2> <h2><b>100/100Mbps Fiber Internet</b>: Members, login below to gain full access to the premium network. Guests may have unlimited free usage of our slower connection.</h2>


</div> </div>


Expand Down

0 comments on commit b720614

Please sign in to comment.