- Timestamp:
- 4 May 2023, 08:53:20 (20 months ago)
- Location:
- main/waeup.kofa/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/CHANGES.txt
r17376 r17400 4 4 1.8.2.dev0 (unreleased) 5 5 ======================= 6 7 * Show admission slip download button only if student is fresh. 6 8 7 9 * Enable customization of certificate select box entries also in the students -
main/waeup.kofa/trunk/src/waeup/kofa/students/viewlets.py
r17217 r17400 225 225 target = 'admission_slip.pdf' 226 226 227 @property 228 def target_url(self): 229 if not self.context.is_fresh: 230 return '' 231 return self.view.url(self.view.context, self.target) 232 227 233 228 234 class StudentTransferButton(ManageActionButton):
Note: See TracChangeset for help on using the changeset viewer.