app/soc/views/models/base.py
changeset 497 73666a7cd718
parent 495 87afae6e4c51
child 499 d22e4fe8e64b
equal deleted inserted replaced
496:875bdc5741eb 497:73666a7cd718
   427       form: the django form that will be used for the page
   427       form: the django form that will be used for the page
   428     """
   428     """
   429 
   429 
   430     pass
   430     pass
   431 
   431 
       
   432   def _editSeed(self, request, seed):
       
   433     """Performs any required processing on the form to get its edit page
       
   434 
       
   435     Args:
       
   436       request: the django request object
       
   437       seed: the fields to seed the create page with
       
   438     """
       
   439 
       
   440     pass
       
   441 
   432   def checkUnspecified(self, access_type, request):
   442   def checkUnspecified(self, access_type, request):
   433     """Checks whether an unspecified access_type should be allowed
   443     """Checks whether an unspecified access_type should be allowed
   434 
   444 
   435     Args:
   445     Args:
   436       access_type: the access type (such as 'list' or 'edit') that was
   446       access_type: the access type (such as 'list' or 'edit') that was