summaryrefslogtreecommitdiffstats
path: root/expo/views_other.py
blob: 6ff16739d96759252f91ac63723e997025fe232b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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})