Changeset 7477 for main/waeup.sirp/trunk/src/waeup
- Timestamp:
- 15 Jan 2012, 10:38:13 (13 years ago)
- Location:
- main/waeup.sirp/trunk/src/waeup/sirp
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/applicants/browser_templates/applicantscontainermanagepage.pt
r7464 r7477 70 70 </thead> 71 71 <tbody> 72 <tr tal:repeat="appl context/values">72 <tr class="gradeC" tal:repeat="appl context/values"> 73 73 <td> 74 74 <input type="checkbox" name="val_id" tal:attributes="value appl/__name__" /> -
main/waeup.sirp/trunk/src/waeup/sirp/students/browser_templates/containermanagepage.pt
r7464 r7477 34 34 </thead> 35 35 <tbody> 36 <tr tal:repeat="item view/hitlist" >36 <tr tal:repeat="item view/hitlist" class="gradeC"> 37 37 <td><input type="checkbox" name="entries" 38 38 tal:attributes="value item/context/__name__" /></td> -
main/waeup.sirp/trunk/src/waeup/sirp/students/browser_templates/containerpage.pt
r7464 r7477 32 32 </thead> 33 33 <tbody> 34 <tr tal:repeat="item view/hitlist" >34 <tr tal:repeat="item view/hitlist" class="gradeC"> 35 35 <td> <a tal:attributes="href item/url"> 36 36 <span tal:content="item/student_id">A123456</span></a> -
main/waeup.sirp/trunk/src/waeup/sirp/utils/utils.py
r7471 r7477 56 56 57 57 def fullname(self,firstname,lastname,middlename=None): 58 """Full name constructor. 59 """ 58 60 # We do not necessarily have the middlename attribute 59 61 if middlename: … … 65 67 66 68 def genPassword(self, length=8, chars=string.letters + string.digits): 69 """Generate a random password. 70 """ 67 71 return ''.join([r().choice(chars) for i in range(length)]) 68 72
Note: See TracChangeset for help on using the changeset viewer.