Changeset 8062
- Timestamp:
- 8 Apr 2012, 04:42:06 (13 years ago)
- Location:
- main/waeup.kofa/trunk/src/waeup/kofa
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/browser/browser.txt
r8032 r8062 116 116 >>> print browser.contents 117 117 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"... 118 ...<h1>Welcome to the Student Information and Registration Portal...</h1>118 ...<h1>Welcome to Kofa...</h1> 119 119 ... 120 120 … … 130 130 >>> print browser.contents 131 131 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"... 132 ...<h1>Willkommen i m Studenteninformations- und Registrierungsportal</h1>132 ...<h1>Willkommen in Kofa</h1> 133 133 ... 134 134 -
main/waeup.kofa/trunk/src/waeup/kofa/browser/pages.py
r7974 r8062 392 392 393 393 def update(self, userid=None, adduser=None, manage=None, delete=None): 394 datatable.need() 394 395 if manage is not None and userid is not None: 395 396 self.redirect(self.url(userid) + '/@@manage') … … 549 550 'name', 'description', 'roles') 550 551 label = _(u"My Preferences") 552 form_fields['phone'].custom_widget = PhoneWidget 551 553 552 554 def setUpWidgets(self, ignore_request=False): -
main/waeup.kofa/trunk/src/waeup/kofa/browser/templates/userscontainerpage.pt
r7811 r8062 1 <table i18n:domain="waeup.kofa" >1 <table i18n:domain="waeup.kofa" class="display dataTable"> 2 2 <thead> 3 3 <tr> -
main/waeup.kofa/trunk/src/waeup/kofa/frontpage.rst
r7703 r8062 1 Welcome to the Student Information and Registration Portal2 =============== ===========================================1 Welcome to Kofa 2 =============== 3 3 4 4 This is the default frontpage of the portal written … … 35 35 36 36 >>de<< 37 Willkommen i m Studenteninformations- und Registrierungsportal38 ================== ===========================================37 Willkommen in Kofa 38 ================== 39 39 40 40 Dies ist die Standard-Startseite des Portals. Sie wurde in der Markup-Sprache -
main/waeup.kofa/trunk/src/waeup/kofa/interfaces.py
r8039 r8062 425 425 title = _(u'Phone'), 426 426 default = None, 427 required = True,427 required = False, 428 428 ) 429 429
Note: See TracChangeset for help on using the changeset viewer.