diff options
author | substantialnoninfringinguser <substantialnoninfringinguser@gmail.com> | 2009-05-13 05:31:44 +0100 |
---|---|---|
committer | substantialnoninfringinguser <substantialnoninfringinguser@gmail.com> | 2009-05-13 05:31:44 +0100 |
commit | b2366cfe11d8eb7ef3639c42902d1ce9d5312e7a (patch) | |
tree | 3d0a647bfe4c364bf26543e60375f4494283fac2 /expo/views_other.py | |
parent | f02c91901c517680a31d383e55977f8fe1ab3918 (diff) | |
download | troggle-b2366cfe11d8eb7ef3639c42902d1ce9d5312e7a.tar.gz troggle-b2366cfe11d8eb7ef3639c42902d1ce9d5312e7a.tar.bz2 troggle-b2366cfe11d8eb7ef3639c42902d1ce9d5312e7a.zip |
[svn] Got rid of ugly old design; brought in ugly new design. This one works a little better, still needs a lot of work.
Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8164 by aaron @ 1/17/2009 7:11 AM
Diffstat (limited to 'expo/views_other.py')
-rw-r--r-- | expo/views_other.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/expo/views_other.py b/expo/views_other.py index 6ff1673..88a8559 100644 --- a/expo/views_other.py +++ b/expo/views_other.py @@ -4,7 +4,7 @@ import troggle.settings as settings from django import forms
from django.db.models import Q
import re
-#import randSent (it's not ready yet)
+import randSent
def stats(request):
statsDict={}
@@ -14,6 +14,6 @@ def stats(request): statsDict['logbookEntryCount'] = int(LogbookEntry.objects.count())
return render_to_response('statistics.html', statsDict)
-#def frontPage(request):
+def frontPage(request):
-# return render_to_response('index.html', {'randSent':randSent.randomLogbookSentence(),'settings':settings})
\ No newline at end of file + return render_to_response('index.html', {'randSent':randSent.randomLogbookSentence(),'settings':settings})
\ No newline at end of file |