From patchwork Fri Jul 8 04:25:37 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zygmunt Krynicki X-Patchwork-Id: 2584 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 5A74723F58 for ; Fri, 8 Jul 2011 04:25:42 +0000 (UTC) Received: from mail-qy0-f173.google.com (mail-qy0-f173.google.com [209.85.216.173]) by fiordland.canonical.com (Postfix) with ESMTP id 17CF0A18295 for ; Fri, 8 Jul 2011 04:25:42 +0000 (UTC) Received: by qyk10 with SMTP id 10so94963qyk.11 for ; Thu, 07 Jul 2011 21:25:41 -0700 (PDT) Received: by 10.224.196.1 with SMTP id ee1mr1205594qab.109.1310099139624; Thu, 07 Jul 2011 21:25:39 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.229.48.135 with SMTP id r7cs126539qcf; Thu, 7 Jul 2011 21:25:39 -0700 (PDT) Received: by 10.216.237.131 with SMTP id y3mr232865weq.87.1310099138378; Thu, 07 Jul 2011 21:25:38 -0700 (PDT) Received: from adelie.canonical.com (adelie.canonical.com [91.189.90.139]) by mx.google.com with ESMTP id e43si20095616wes.7.2011.07.07.21.25.38; Thu, 07 Jul 2011 21:25:38 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.139 as permitted sender) client-ip=91.189.90.139; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.139 as permitted sender) smtp.mail=bounces@canonical.com Received: from loganberry.canonical.com ([91.189.90.37]) by adelie.canonical.com with esmtp (Exim 4.71 #1 (Debian)) id 1Qf2dF-0004qr-N5 for ; Fri, 08 Jul 2011 04:25:37 +0000 Received: from loganberry.canonical.com (localhost [127.0.0.1]) by loganberry.canonical.com (Postfix) with ESMTP id A65882E890E for ; Fri, 8 Jul 2011 04:25:37 +0000 (UTC) MIME-Version: 1.0 X-Launchpad-Project: lava-server X-Launchpad-Branch: ~linaro-validation/lava-server/trunk X-Launchpad-Message-Rationale: Subscriber X-Launchpad-Branch-Revision-Number: 198 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~linaro-validation/lava-server/trunk] Rev 198: Use correct base template Message-Id: <20110708042537.8895.84243.launchpad@loganberry.canonical.com> Date: Fri, 08 Jul 2011 04:25:37 -0000 Reply-To: noreply@launchpad.net Sender: bounces@canonical.com Errors-To: bounces@canonical.com Precedence: bulk X-Generated-By: Launchpad (canonical.com); Revision="13376"; Instance="initZopeless config overlay" X-Launchpad-Hash: 487f046d00fa18eb402d1b98b7485075ae35901f ------------------------------------------------------------ revno: 198 committer: Zygmunt Krynicki 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 === 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 %}

404 Not found

{% 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 %}

500 Internal Server Error

{% endblock %}