Changeset 9610 for main/waeup.kofa
- Timestamp:
- 10 Nov 2012, 08:25:17 (12 years ago)
- Location:
- main/waeup.kofa/trunk/src/waeup/kofa/browser
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/browser/pages.py
r9592 r9610 832 832 label = _(u'Data Center') 833 833 pnav = 0 834 max_files = 10835 834 836 835 def update(self): 837 836 datatable.need() 838 837 warning.need() 839 self.max_exceeded = False840 number_of_pendings = len(self.context.getPendingFiles())841 if number_of_pendings > self.max_files:842 self.max_exceeded = True843 838 return super(DatacenterPage, self).update() 844 839 … … 887 882 label = _(u'Upload portal data as CSV file') 888 883 pnav = 0 884 max_files = 10 889 885 upload_button =_(u'Upload') 890 886 cancel_button =_(u'Cancel') … … 965 961 def update(self, uploadfile=None, import_mode=None, 966 962 importer=None, CANCEL=None, SUBMIT=None): 963 number_of_pendings = len(self.context.getPendingFiles()) 964 if number_of_pendings > self.max_files: 965 self.flash( 966 _('Maximum number of files in the data center exceeded.')) 967 self.redirect(self.url(self.context)) 968 return 967 969 if CANCEL is not None: 968 970 self.redirect(self.url(self.context)) -
main/waeup.kofa/trunk/src/waeup/kofa/browser/templates/datacenterpage.pt
r9592 r9610 1 <p class="alert-message warning" i18n:translate=""2 tal:condition="view/max_exceeded">3 <strong>NOTICE:</strong>4 There are more than5 <span tal:content="view/max_files" i18n:name="count">50</span>6 pending files in the data center. Please repair them first before uploading7 new files. Download and edit their records according to the error8 messages in the last column.9 Do not change file names when re-uploading files.10 If a file contains no more data for import just remove it.11 </p>12 13 1 <p i18n:domain="waeup.kofa" i18n:translate=""> 14 2 The data center helps you to manage portal data. You can upload CSV
Note: See TracChangeset for help on using the changeset viewer.