Ignore:
Timestamp:
27 Nov 2011, 18:52:20 (13 years ago)
Author:
Henrik Bettermann
Message:

If start date doesn't exist, application is treated as not yet started.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.sirp/trunk/src/waeup/sirp/applicants/browser.py

    r7200 r7224  
    430430        # If application has not yet started,
    431431        # logout without marking AC as used
    432         if self.context.startdate > date.today():
     432        if not self.context.startdate or self.context.startdate > date.today():
    433433            self.flash('Application has not yet started.')
    434434            auth = getUtility(IAuthentication)
Note: See TracChangeset for help on using the changeset viewer.