Changeset 16991 for main/kofacustom.lpng
- Timestamp:
- 5 Jul 2022, 20:41:30 (2 years ago)
- Location:
- main/kofacustom.lpng/trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.lpng/trunk/layout/theme.html
r16990 r16991 91 91 92 92 <div id="logo-container"> 93 < img src="static_custom/lp_logo.png" width="200">93 <a href=""><img src="static_custom/lp_logo.png" width="200"></a> 94 94 </div> 95 95 … … 583 583 <div id="bottom" class="footer"> 584 584 <p class="credit muted text-right"> 585 Kofa - Student ManagementSystem<br />585 Kofa - Application and Registration System<br /> 586 586 Copyright © WAeUP Group 587 587 <script type="text/javascript"> -
main/kofacustom.lpng/trunk/src/kofacustom/lpng/browser/pages.py
r16984 r16991 24 24 from kofacustom.lpng.interfaces import ( 25 25 ICustomSessionConfiguration, ICustomSessionConfigurationAdd) 26 from waeup.kofa.browser.viewlets import FacultiesTab 26 from waeup.kofa.browser.viewlets import FacultiesTab, ManageReports 27 27 28 28 class FacultiesTab(FacultiesTab): … … 34 34 def link_target(self): 35 35 return 36 37 class ManageReports(ManageReports): 38 """A link to reports, placed in upper left box. 39 """ 40 41 def render(self): 42 return '' 36 43 37 44 class CustomSessionConfigurationAddFormPage(SessionConfigurationAddFormPage): -
main/kofacustom.lpng/trunk/src/kofacustom/lpng/locales/en/LC_MESSAGES/waeup.kofa.po
r16717 r16991 9 9 "Content-Type: text/plain; charset=iso-8859-1\n" 10 10 "Content-Transfer-Encoding: 8bit\n" 11 "Language: en\n" 12 "X-Generator: Poedit 1.6.5\n" 13 14 msgid "WAeUP.Kofa - Student Management System" 15 msgstr "Kofa - Application and Registration System" 11 16 12 17 msgid "Academics" 13 18 msgstr "Institutions" 14 19 20 msgid "Applicants Containers" 21 msgstr "" 22 23 msgid "Applicants" 24 msgstr "" 25 26 msgid "Applicant" 27 msgstr "" 28 29 msgid "Applicants Section" 30 msgstr "Registration Section" 31 32 msgid "Registration Number or Applicant Id:" 33 msgstr "" 34 35 msgid "Number of Applicants" 36 msgstr "" 37 38 msgid "Application" 39 msgstr "Registration" 40 41 #. Default: "You don't have an account because you are a fresh student, or your student record has just been created? Acquire a Password Activation Code (PWD) and inititialize your student account <strong><a href=\"setpassword\"> here</a></strong>." 42 msgid "login_trouble2" 43 msgstr " " 44 45 #. Default: "You don't have an account because you are a fresh student, or your student record has just been created? <a href=\"requestpw\" class=\"btn btn-success btn-xs\">Inititialize your student account.</a>" 46 #: waeup/kofa/browser/templates/loginpage.pt:28 47 msgid "login_trouble3" 48 msgstr " " 49 50 #. Default: "Or simply forgot your student id, applicant id or password? <a href=\"changepw\" class=\"btn btn-success btn-xs\">Request a new password.</a>" 51 #: waeup/kofa/browser/templates/loginpage.pt:32 52 msgid "login_trouble4" 53 msgstr "" 54 "You forgot your user name, applicant id or password? <a href=\"changepw\" " 55 "class=\"btn btn-success btn-xs\">Request a new password.</a>" 56 57 #. Default: "You are student parents and want to monitor study progress of your child? <a href=\"requestppw\" class=\"btn btn-success btn-xs\">Request a temporary parents password.</a> <br /> Prerequisite for getting parents access is that you have a valid email address and that this address has been entered by the student into the parents' email address field." 58 #: waeup/kofa/browser/templates/loginpage.pt:35 59 msgid "login_trouble5" 60 msgstr " " -
main/kofacustom.lpng/trunk/src/kofacustom/lpng/utils/utils.py
r16717 r16991 24 24 """ 25 25 26 PAYMENT_CATEGORIES = { 27 'application': 'Application Fee', 28 'donation': 'Donation', 29 }
Note: See TracChangeset for help on using the changeset viewer.