Changeset 6307 for main/waeup.sirp/trunk
- Timestamp:
- 9 Jun 2011, 20:44:27 (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/form_display.pt
r6305 r6307 3 3 tal:content="view/label">Label</h2> 4 4 5 <h 3>Application Status:6 <span tal:replace="view/getApplicationState">Application State</span></h3> 7 5 <h2> ... <span tal:replace="view/getApplicationState">Application State</span> ... </h2> 6 7 <div class="workflow" tal:content="structure context/messages">Application Workflow</div> 8 8 9 9 <table class="zebra"> -
main/waeup.sirp/trunk/src/waeup/sirp/applicants/browser_templates/form_edit.pt
r6305 r6307 6 6 tal:content="view/label">Label</h2> 7 7 8 <h3>Application Status: 9 <span tal:replace="view/getApplicationState">Application State</span></h3> 10 <div class="workflow" tal:content="structure context/messages">Application Workflow</div> 8 <h2> ... <span tal:replace="view/getApplicationState">Application State</span> ... </h2> 11 9 10 <div class="workflow" tal:content="structure context/messages">Application Workflow</div> 11 12 12 13 <div class="form-status" 13 14 tal:define="status view/status" -
main/waeup.sirp/trunk/src/waeup/sirp/applicants/workflow.py
r6306 r6307 32 32 submit_transition = Transition( 33 33 transition_id = 'submit', 34 title = 'Submit application record',34 title = 'Submit application', 35 35 source = STARTED, 36 36 destination = SUBMITTED) … … 56 56 create_transition = Transition( 57 57 transition_id = 'create', 58 title = 'Create student ',58 title = 'Create student record', 59 59 source = ADMITTED, 60 60 destination = CREATED) -
main/waeup.sirp/trunk/src/waeup/sirp/browser/static/waeup-base.css
r6161 r6307 29 29 a:hover { 30 30 text-decoration: underline; 31 } 32 33 .workflow { 34 border:2px solid #1fdf00; 35 background-color:#bbffb6; 36 font-family: courier; 37 font-size: 80%; 38 padding-left: 4px; 39 margin-bottom: 8px; 40 border-width: 1px; 31 41 } 32 42
Note: See TracChangeset for help on using the changeset viewer.