diff options
author | Magnus Hagander | 2014-07-14 15:30:54 +0000 |
---|---|---|
committer | Magnus Hagander | 2014-07-14 15:30:54 +0000 |
commit | a34c78278bf6128a489530bf3ef2d6560ac799ce (patch) | |
tree | ca1e40e11383dd8ab2cc873ec6bf70e910c6af78 /pgcommitfest/commitfest/views.py | |
parent | 8495806d3534f4ecfb3329e62356c82998cd0f69 (diff) |
Change title of view patch page to actually be name of patch
Diffstat (limited to 'pgcommitfest/commitfest/views.py')
-rw-r--r-- | pgcommitfest/commitfest/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pgcommitfest/commitfest/views.py b/pgcommitfest/commitfest/views.py index c6a69c1..a7d7498 100644 --- a/pgcommitfest/commitfest/views.py +++ b/pgcommitfest/commitfest/views.py @@ -135,7 +135,7 @@ def patch(request, cfid, patchid): 'is_committer': is_committer, 'is_this_committer': is_this_committer, 'is_reviewer': is_reviewer, - 'title': 'View patch', + 'title': patch.name, 'breadcrumbs': [{'title': cf.title, 'href': '/%s/' % cf.pk},], }, context_instance=RequestContext(request)) |