diff options
author | Struan Donald <struan@exo.org.uk> | 2011-05-12 10:34:42 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2011-05-12 10:34:42 +0100 |
commit | 3690979cd0a8b2197bd697c77d8e9146ff7431da (patch) | |
tree | 1d84ab5f5447d17c4777fee216cd66bf9150772d /templates/web/default/errors.html | |
parent | f192e02e1a1a4ad6754e55ca7045c734f345c148 (diff) |
create and use errors template
Diffstat (limited to 'templates/web/default/errors.html')
-rw-r--r-- | templates/web/default/errors.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/templates/web/default/errors.html b/templates/web/default/errors.html new file mode 100644 index 000000000..e0f484ba5 --- /dev/null +++ b/templates/web/default/errors.html @@ -0,0 +1,5 @@ +[% FOREACH error IN errors %] + [% '<ul class="error">' IF loop.first %] + <li>[% error %]</li> + [% '</ul>' IF loop.last %] +[% END %] |