diff mbox

[Branch,~linaro-validation/lava-server/trunk] Rev 198: Use correct base template

Message ID 20110708042537.8895.84243.launchpad@loganberry.canonical.com
State Accepted
Headers show

Commit Message

Zygmunt Krynicki July 8, 2011, 4:25 a.m. UTC
------------------------------------------------------------
revno: 198
committer: Zygmunt Krynicki <zygmunt.krynicki@linaro.org>
branch nick: trunk
timestamp: Fri 2011-07-08 06:23:51 +0200
message:
  Use correct base template
modified:
  lava_server/templates/404.html
  lava_server/templates/500.html


--
lp:lava-server
https://code.launchpad.net/~linaro-validation/lava-server/trunk

You are subscribed to branch lp:lava-server.
To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-server/trunk/+edit-subscription
diff mbox

Patch

=== modified file 'lava_server/templates/404.html'
--- lava_server/templates/404.html	2011-07-08 02:56:22 +0000
+++ lava_server/templates/404.html	2011-07-08 04:23:51 +0000
@@ -1,7 +1,9 @@ 
-{% extends "base.html" %}
+{% extends "layouts/content.html" %}
+
 
 {% block title %} | HTTP 404 {% endblock %}
 
+
 {% block content %}
 <h1>404 Not found</h1>
 {% endblock %}

=== modified file 'lava_server/templates/500.html'
--- lava_server/templates/500.html	2011-07-08 02:56:22 +0000
+++ lava_server/templates/500.html	2011-07-08 04:23:51 +0000
@@ -1,7 +1,9 @@ 
 {% extends "layouts/content.html" %}
 
+
 {% block title %} | HTTP 500 {% endblock %}
 
+
 {% block content %}
 <h1>500 Internal Server Error</h1>
 {% endblock %}