aboutsummaryrefslogtreecommitdiffstats
path: root/docs/config/templates/errorNamespace.template.html
blob: ebd48e049c540a89f6050d3650a9f52c484b9061 (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
{% extends 'base.template.html' %}

{% block content %}
<h1>{$ doc.name $}</h1>

<div class="description">
  Here are the list of errors in the {$ doc.name $} namespace.

</div>

<div class="component-breakdown">
  <div>
    <table class="definition-table">
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
      {% for errorDoc in doc.errors -%}
      <tr>
        <td><a href="{$ errorDoc.path $}">{$ errorDoc.name $}</td>
        <td>{$ errorDoc.fullName $}</td>
      </tr>
      {% endfor %}
    </table>
  </div>
</div>

{% endblock %}