Skip to content

Commit

Permalink
Minor tweaks
Browse files Browse the repository at this point in the history
  • 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
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ class LogHandler(webapp.RequestHandler):
""" Show log """

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

<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>

Expand Down

0 comments on commit b720614

Please sign in to comment.