Changeset 3308 for WAeUP_SRP/base/skins/waeup_upload
- Timestamp:
- 10 Mar 2008, 07:13:11 (17 years ago)
- Location:
- WAeUP_SRP/base/skins/waeup_upload
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/base/skins/waeup_upload/uploads_form.pt
r3307 r3308 163 163 <table tal:condition="python: 1" class="contentListing" width="100%" summary="content layout" id="folder_content"> 164 164 <tr> 165 <th>File name</th>165 <th>File in Archive</th> 166 166 <th>Data Layout</th> 167 <th>By</th> 168 <th>Date</th> 167 <th>Uploaded By</th> 168 <th>Upload Date</th> 169 <th>Imported By</th> 169 170 <th>Import Date</th> 170 171 <th>Message</th> … … 177 178 <td tal:content="row/uploaded_by" ></td> 178 179 <td tal:content="row/upload_date" ></td> 179 <td tal:content="row/imported_at" ></td> 180 <td tal:content="row/imported_by" ></td> 181 <td tal:content="row/import_date" ></td> 180 182 <td tal:content="row/msg"></td> 181 183 </tr> -
WAeUP_SRP/base/skins/waeup_upload/uploads_index.py
r3307 r3308 76 76 row['imported'] = True 77 77 row['msg'] = import_message 78 if getattr(doc,'import ed_at',''):79 row['import ed_at'] = doc.imported_at.strftime("%d/%m/%y %H:%M:%S")78 if getattr(doc,'import_date',''): 79 row['import_date'] = doc.import_date.strftime("%d/%m/%y %H:%M:%S") 80 80 else: 81 row['import ed_at'] = ''81 row['import_date'] = '' 82 82 add_to = imported 83 83 else: … … 96 96 info['imported'] = imported 97 97 info['importable'] = importable 98 info['import_allowed'] = str(member) in ('admin','joachim',) 98 info['import_allowed'] = str(member) in ('admin','joachim',) 99 99 100 100 validate = "upload" in request.keys()
Note: See TracChangeset for help on using the changeset viewer.