Changeset 16984 for main/kofacustom.lpng/trunk/src/kofacustom/lpng/hostels
- Timestamp:
- 5 Jul 2022, 08:12:05 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.lpng/trunk/src/kofacustom/lpng/hostels/browser.py
r16983 r16984 20 20 import grok 21 21 from waeup.kofa.hostels.browser import ( 22 HostelAddFormPage, HostelDisplayFormPage, HostelManageFormPage) 22 HostelAddFormPage, HostelDisplayFormPage, HostelManageFormPage, 23 HostelsTab) 23 24 from kofacustom.lpng.hostels.interfaces import ICustomHostel 25 26 class HostelsTab(HostelsTab): 27 """Hostels tab in primary navigation. 28 """ 29 30 @property 31 def link_target(self): 32 return 24 33 25 34 class CustomHostelAddFormPage(HostelAddFormPage): … … 38 47 """ 39 48 form_fields = grok.AutoFields(ICustomHostel).omit('hostel_id', 'beds_reserved') 49 50 51
Note: See TracChangeset for help on using the changeset viewer.