[svn] Improve registration system.

Add jquery fade effects and quick search.
Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8334 by cucc @ 5/10/2009 5:23 AM
This commit is contained in:
substantialnoninfringinguser
2009-05-13 06:22:07 +01:00
parent 9972e28a91
commit 1b06243dab
16 changed files with 466 additions and 138 deletions

View File

@@ -77,12 +77,12 @@ def caveSearch(request):
def surveyindex(request):
surveys=Survey.objects.all()
expeditions=Expedition.objects.all()
expeditions=Expedition.objects.order_by("-year")
return render_response(request,'survey.html',locals())
def survey(request,year,wallet_number):
surveys=Survey.objects.all()
expeditions=Expedition.objects.all()
expeditions=Expedition.objects.order_by("-year")
current_expedition=Expedition.objects.filter(year=year)[0]
if wallet_number!='':