[LNT] r179195 - Stylize the error page

Paul Redmond paul.redmond at intel.com
Wed Apr 10 11:16:15 PDT 2013


Author: predmond
Date: Wed Apr 10 13:16:15 2013
New Revision: 179195

URL: http://llvm.org/viewvc/llvm-project?rev=179195&view=rev
Log:
Stylize the error page

- wrap the error message in an alert-error div

Reviewed by: Daniel Dunbar

Modified:
    lnt/trunk/lnt/server/ui/templates/error.html

Modified: lnt/trunk/lnt/server/ui/templates/error.html
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/server/ui/templates/error.html?rev=179195&r1=179194&r2=179195&view=diff
==============================================================================
--- lnt/trunk/lnt/server/ui/templates/error.html (original)
+++ lnt/trunk/lnt/server/ui/templates/error.html Wed Apr 10 13:16:15 2013
@@ -3,6 +3,8 @@
 {% block title %}Error{% endblock %}
 {% block body %}
 
-{{ message }}
+<div class="alert alert-error">
+Error: {{ message }}
+</div>
 
 {% endblock %}





More information about the llvm-commits mailing list