valid.html 2.08 KB
Newer Older
1 2 3 4
<%! from django.utils.translation import ugettext as _ %>
<%! import mako.runtime %>
<% mako.runtime.UNDEFINED = '' %>

5
<%inherit file="certificate-base.html" />
6

7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
<%include file="_certificate-header.html" />

<hr class="divider" />

<div class="wrapper-content">

  <section class="content content-main" role="main">
    <div class="status status-valid" id="validation-status">
      <h2 class="title title-lvl2">
        ${document_banner}
        <span class="sr">:</span>
      </h2>
    </div>

    <article class="accomplishment ${accomplishment_class_append}" id="validation-accomplishment">
      <div class="accomplishment-statement">
        <p class="copy">
          <span class="copy-name">${accomplishment_copy_name}</span>
          <span class="copy-context">${accomplishment_copy_description_full}</span>
          <span class="copy-course">
            <span class="copy-course-org">${accomplishment_copy_course_org}</span>
            <span class="copy-course-name">${accomplishment_copy_course_name}</span>
          </span>
          <span class="copy-context">${accomplishment_copy_course_description}</span>
        </p>
32
      </div>
33 34 35 36 37 38 39
      <div class="accomplishment-details">
        <h3 class="title title-lvl2 sr">${accomplishment_more_title}</h3>
        <ul class="list list-metadata">
          <li class="item certificate-type">
            <span class="label">${_("Certificate Type")}</span>
            <span class="value">
              ${certificate_type_title}
40
              <span class="explanation">${certificate_type_description}</span>
41
            </span>
42 43 44 45 46 47 48 49 50 51 52 53 54
          </li>
          <li class="item certificate-id">
            <span class="label">${certificate_id_number_title}</span>
            <span class="value">${certificate_id_number}</span>
          </li>
          <li class="item certificate-date">
            <span class="label">${certificate_date_issued_title}</span>
            <span class="value">${certificate_date_issued}</span>
          </li>
        </ul>
      </div>
    </article>
  </section>
55
</div>
56 57 58 59

<hr class="divider" />

<%include file="_certificate-footer.html" />