From patchwork Wed Feb 3 21:31:44 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Finucane X-Patchwork-Id: 578390 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.ozlabs.org (lists.ozlabs.org [103.22.144.68]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id A78F11402DE for ; Thu, 4 Feb 2016 08:32:51 +1100 (AEDT) Received: from lists.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) by lists.ozlabs.org (Postfix) with ESMTP id 8BFFC1A0295 for ; Thu, 4 Feb 2016 08:32:51 +1100 (AEDT) X-Original-To: patchwork@lists.ozlabs.org Delivered-To: patchwork@lists.ozlabs.org Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by lists.ozlabs.org (Postfix) with ESMTP id 19D771A0246 for ; Thu, 4 Feb 2016 08:32:00 +1100 (AEDT) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga102.fm.intel.com with ESMTP; 03 Feb 2016 13:32:01 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.22,391,1449561600"; d="scan'208,217";a="907947981" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by fmsmga002.fm.intel.com with ESMTP; 03 Feb 2016 13:31:58 -0800 Received: from sivswdev01.ir.intel.com (sivswdev01.ir.intel.com [10.237.217.45]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id u13LVvdK029183; Wed, 3 Feb 2016 21:31:57 GMT Received: from sivswdev01.ir.intel.com (localhost [127.0.0.1]) by sivswdev01.ir.intel.com with ESMTP id u13LVviD019005; Wed, 3 Feb 2016 21:31:57 GMT Received: (from sfinucan@localhost) by sivswdev01.ir.intel.com with id u13LVv4d019001; Wed, 3 Feb 2016 21:31:57 GMT From: Stephen Finucane To: patchwork@lists.ozlabs.org Subject: [PATCH 09/19] ui: Use

for page titles Date: Wed, 3 Feb 2016 21:31:44 +0000 Message-Id: <1454535114-18190-10-git-send-email-stephen.finucane@intel.com> X-Mailer: git-send-email 2.0.0 In-Reply-To: <1454535114-18190-1-git-send-email-stephen.finucane@intel.com> References: <1454535114-18190-1-git-send-email-stephen.finucane@intel.com> X-BeenThere: patchwork@lists.ozlabs.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Patchwork development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: patchwork-bounces+incoming=patchwork.ozlabs.org@lists.ozlabs.org Sender: "Patchwork" From: Damien Lespiau

is used for titles within the page, but shouldn't be used for page titles, which are a level higher. Signed-off-by: Damien Lespiau Acked-by: Stephen Finucane --- patchwork/templates/patchwork/bundles.html | 1 + patchwork/templates/patchwork/list.html | 2 +- patchwork/templates/patchwork/patch.html | 2 +- patchwork/templates/patchwork/profile.html | 1 + patchwork/templates/patchwork/project.html | 1 + patchwork/templates/patchwork/todo-list.html | 1 + patchwork/templates/patchwork/todo-lists.html | 1 + 7 files changed, 7 insertions(+), 2 deletions(-) diff --git a/patchwork/templates/patchwork/bundles.html b/patchwork/templates/patchwork/bundles.html index 35235fb..6467a30 100644 --- a/patchwork/templates/patchwork/bundles.html +++ b/patchwork/templates/patchwork/bundles.html @@ -7,6 +7,7 @@ {% block bundle_active %}active{% endblock %} {% block body %} +

Bundles

{% if bundles %} diff --git a/patchwork/templates/patchwork/list.html b/patchwork/templates/patchwork/list.html index df25bb5..fc33d7b 100644 --- a/patchwork/templates/patchwork/list.html +++ b/patchwork/templates/patchwork/list.html @@ -9,7 +9,7 @@ {% block body %} -

Incoming Patches

+

Patches

{% if errors %}

The following error{{ errors|length|pluralize:" was,s were" }} encountered diff --git a/patchwork/templates/patchwork/patch.html b/patchwork/templates/patchwork/patch.html index b5d0eb7..ae9355d 100644 --- a/patchwork/templates/patchwork/patch.html +++ b/patchwork/templates/patchwork/patch.html @@ -27,7 +27,7 @@ function toggle_headers(link_id, headers_id) } -

{{ patch.name }}

+

{{ patch.name }}

Submitted by {{ patch.submitter|personify:project }} on {{ patch.date }}
diff --git a/patchwork/templates/patchwork/profile.html b/patchwork/templates/patchwork/profile.html index acc90de..2ec2db1 100644 --- a/patchwork/templates/patchwork/profile.html +++ b/patchwork/templates/patchwork/profile.html @@ -5,6 +5,7 @@ {% block body %} +

Your Profile

{% if user.profile.maintainer_projects.count %} diff --git a/patchwork/templates/patchwork/project.html b/patchwork/templates/patchwork/project.html index 5238ba4..b84e5dc 100644 --- a/patchwork/templates/patchwork/project.html +++ b/patchwork/templates/patchwork/project.html @@ -5,6 +5,7 @@ {% block info_active %}active{% endblock %} {% block body %} +

About {{project.name}}

diff --git a/patchwork/templates/patchwork/todo-list.html b/patchwork/templates/patchwork/todo-list.html index b301901..5e60446 100644 --- a/patchwork/templates/patchwork/todo-list.html +++ b/patchwork/templates/patchwork/todo-list.html @@ -6,6 +6,7 @@ {% block heading %}{{user}}'s todo list for {{ project.linkname }}{% endblock %} {% block body %} +

TODO

A Patchwork Todo-list contains patches that are assigned to you, and are in an "action required" state diff --git a/patchwork/templates/patchwork/todo-lists.html b/patchwork/templates/patchwork/todo-lists.html index 6365f59..352ca5d 100644 --- a/patchwork/templates/patchwork/todo-lists.html +++ b/patchwork/templates/patchwork/todo-lists.html @@ -4,6 +4,7 @@ {% block heading %}{{ user }}'s todo lists{% endblock %} {% block body %} +

TODO

{% if todo_lists %}

You have multiple todo lists. Each todo list contains patches for a single