summaryrefslogtreecommitdiffstats
path: root/src/lib/Server/Hostbase/hostbase/webtemplates/errors.html
blob: 47d32ede453dfbd429fe25f474df1639c251827e (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
{% extends "base.html" %}

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

{% block sidebar %}
<a href="/hostbase/" class="sidebar">new search</a>
{% endblock %}

{% block content %}

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

<font color="#FF0000">{{ failure }}</font><br>

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

{% endblock %}