Changeset 6307


Ignore:
Timestamp:
9 Jun 2011, 20:44:27 (13 years ago)
Author:
Henrik Bettermann
Message:

Adjust design and style sheets of workflow message box.

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  
    33    tal:content="view/label">Label</h2>
    44
    5 <h3>Application Status:
    6   <span tal:replace="view/getApplicationState">Application State</span></h3>
    7   <div class="workflow" tal:content="structure context/messages">Application Workflow</div>
     5<h2> ... <span tal:replace="view/getApplicationState">Application State</span> ... </h2>
     6
     7<div class="workflow" tal:content="structure context/messages">Application Workflow</div>
    88
    99<table class="zebra">
  • main/waeup.sirp/trunk/src/waeup/sirp/applicants/browser_templates/form_edit.pt

    r6305 r6307  
    66    tal:content="view/label">Label</h2>
    77
    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>
    119
     10  <div class="workflow" tal:content="structure context/messages">Application Workflow</div>
     11
     12 
    1213  <div class="form-status"
    1314    tal:define="status view/status"
  • main/waeup.sirp/trunk/src/waeup/sirp/applicants/workflow.py

    r6306 r6307  
    3232    submit_transition = Transition(
    3333        transition_id = 'submit',
    34         title = 'Submit application record',
     34        title = 'Submit application',
    3535        source = STARTED,
    3636        destination = SUBMITTED)
     
    5656    create_transition = Transition(
    5757        transition_id = 'create',
    58         title = 'Create student',
     58        title = 'Create student record',
    5959        source = ADMITTED,
    6060        destination = CREATED)
  • main/waeup.sirp/trunk/src/waeup/sirp/browser/static/waeup-base.css

    r6161 r6307  
    2929a:hover {
    3030  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;
    3141}
    3242
Note: See TracChangeset for help on using the changeset viewer.