html_error.html 714 Bytes
Newer Older
1 2 3 4
<%! from django.utils.translation import ugettext as _ %>
<%! from django.core.urlresolvers import reverse %>

<%block name="content">
5 6 7 8 9
  <div class="wrapper wrapper-alert wrapper-alert-error is-shown">
    <div class="error">

      <div class="copy">
        <h2 class="title">
10
          <span class="icon fa fa-warning" aria-hidden="true"></span>
11 12 13
          ${_("We're having trouble rendering your component")}
        </h2>

14
        <p>${_("Students will not be able to access this component. Re-edit your component to fix the error.")}</p>
15 16 17

        % if message:
        <p class="description">
18
            ${_("Error:")}
19 20 21 22 23 24
            ${message | h}
        </p>
        % endif


    </div>
25 26
  </div>
</%block>