diff options
Diffstat (limited to 'docs/config/templates/errorNamespace.template.html')
| -rw-r--r-- | docs/config/templates/errorNamespace.template.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/docs/config/templates/errorNamespace.template.html b/docs/config/templates/errorNamespace.template.html new file mode 100644 index 00000000..ebd48e04 --- /dev/null +++ b/docs/config/templates/errorNamespace.template.html @@ -0,0 +1,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 %}
\ No newline at end of file |
