troggle-unchained/expo/views_other.py
substantialnoninfringinguser ba5ed9fd42 [svn] randSent is unnecessary and causing problems
Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8161 by aaron @ 1/16/2009 2:44 AM
2009-05-13 05:30:41 +01:00

19 lines
763 B
Python

from django.shortcuts import render_to_response
from troggle.expo.models import Cave, Expedition, Person, LogbookEntry
import troggle.settings as settings
from django import forms
from django.db.models import Q
import re
#import randSent (it's not ready yet)
def stats(request):
statsDict={}
statsDict['expoCount'] = int(Expedition.objects.count())
statsDict['caveCount'] = int(Cave.objects.count())
statsDict['personCount'] = int(Person.objects.count())
statsDict['logbookEntryCount'] = int(LogbookEntry.objects.count())
return render_to_response('statistics.html', statsDict)
#def frontPage(request):
# return render_to_response('index.html', {'randSent':randSent.randomLogbookSentence(),'settings':settings})