summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Hostbase/hostbase/webtemplates/errors.html
blob: e5429b86c42313e509438e31041ef39b10be24e9 (plain)
1
2
3
4
5
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
{% extends "base.html" %}

{% block pagebanner %}
  <div class="header">
      <h2>Search Results</h2>
  </div>
  <br/>
{% endblock %}

{% block sidebar %}
{% include "navbar.tmpl" %}
{% include "logout.tmpl" %}
{% endblock %}

{% block content %}

{% if failures %}
There were errors in the following fields<br><br>
{% for failure in failures %}

<font color="#FF0000">{{ failure }}</font><br>
{% comment %}
{{ failure.1|join:", " }}
{% endcomment %}

{% endfor %}
{% endif %}
<br>
Press the back button on your browser and edit those field(s)

{% endblock %}