source: main/kofacustom.ekodisco/trunk/src/kofacustom/ekodisco/applicants/browser_templates/applicantdisplaypage.pt @ 17929

Last change on this file since 17929 was 10800, checked in by Henrik Bettermann, 11 years ago

Issoufou's suggested workflow:

  1. Apply for service (new customer who wants a connection at his residence)
  2. Ekodisco has the capacity to provide that services (approval)
  3. Applicant is now customer, can pay for the services and select the type of meter he wants...
  4. Customer now login and try to pay base on the type of meter he has
  5. Customer can login and print his receipts.

That means we need different entities: applicants and customers. Customers are the students in Kofa.

Step 1 and 2 are implemented in this revision. 3-4 will follow.

File size: 988 bytes
Line 
1<h2 i18n:domain="waeup.kofa">
2  ...
3  <span tal:replace="context/translated_state">APPLICATIONSTATE
4  </span>
5  <span tal:omit-tag=""
6    i18n:translate="" tal:condition="context/suspended">(account suspended)
7  </span>
8  ...
9</h2>
10
11<div class="workflow">
12  <div tal:repeat="msg context/history/messages">
13    <span tal:replace="msg">MESSAGE</span><br />
14  </div>
15</div>
16
17<img src="" height="180px" tal:attributes="src view/passport_url" />
18
19<table i18n:domain="waeup.kofa" class="form-table">
20  <tbody>
21    <tal:widgets content="structure provider:widgets" />
22    <tr tal:condition="view/getCourseAdmitted">
23      <td class="fieldname" i18n:translate="">
24          Assigned Contract:
25      </td>
26      <td>
27        <span tal:replace="structure view/getCourseAdmitted" />
28      </td>
29    </tr>
30    <tr>
31      <td class="fieldname" i18n:translate="">
32          Password:
33      </td>
34      <td>
35          <tal:password replace="view/hasPassword" />
36      </td>
37    <tr>
38  </tbody>
39</table>
Note: See TracBrowser for help on using the repository browser.