Changeset 8240
- Timestamp:
- 15/04/12 20:36:53 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
mauRepo/MolesManager/trunk/src/MolesManager/views/splash.py
r8236 r8240 4 4 @author: mnagni 5 5 ''' 6 7 from django.shortcuts import redirect 8 6 9 from MolesManager.views import cedaObservationView 7 10 from MolesManager.ceda_guid import CedaGUID … … 11 14 ceda_guid = Moles3EPB.search(CedaGUID, guid, request.moles_session) 12 15 if ceda_guid and ceda_guid.ceda_observation: 13 return cedaObservationView.splash(request, ceda_guid.ceda_observation) 16 return redirect(cedaObservationView.coView, ceda_guid.ceda_observation) 17 14 18 if ceda_guid and ceda_guid.ceda_observationcollection: 15 #return cedaObservationCollectionView.splash(request, ceda_guid.ceda_observationcollection)19 #return rediect(cedaObservationCollectionView.FIXME_VIEW, ceda_guid.ceda_observationcollection) 16 20 pass
Note: See TracChangeset
for help on using the changeset viewer.