Merge lp:~wallyworld/launchpad/recipe-related-branches-layout into lp:launchpad

Proposed by Ian Booth
Status: Merged
Approved by: Robert Collins
Approved revision: no longer in the source branch.
Merged at revision: 12327
Proposed branch: lp:~wallyworld/launchpad/recipe-related-branches-layout
Merge into: lp:launchpad
Diff against target: 19 lines (+2/-2)
1 file modified
lib/lp/code/templates/sourcepackagerecipe-related-branches.pt (+2/-2)
To merge this branch: bzr merge lp:~wallyworld/launchpad/recipe-related-branches-layout
Reviewer Review Type Date Requested Status
Robert Collins (community) Approve
Tim Penhey Pending
Review via email: mp+48463@code.launchpad.net

Commit message

[r=lifeless][bug=670452] Fix layout of related branches collapsible fieldset

Description of the change

The <fieldset> used to wrap the related branches for a recipe used a <table> instead of a <div> and the layout messed up on qastaging. This branch fixes that. It's essentially a typo fix in the pt file.

To post a comment you must log in.
Revision history for this message
Robert Collins (lifeless) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'lib/lp/code/templates/sourcepackagerecipe-related-branches.pt'
2--- lib/lp/code/templates/sourcepackagerecipe-related-branches.pt 2011-02-02 01:05:53 +0000
3+++ lib/lp/code/templates/sourcepackagerecipe-related-branches.pt 2011-02-03 12:57:06 +0000
4@@ -4,7 +4,7 @@
5 packageBranches view/related_package_branch_info"
6 tal:condition="python: seriesBranches or packageBranches">
7 <legend>Related Branches</legend>
8- <table>
9+ <div class="extra-options">
10
11 <div tal:condition="packageBranches" id="related-package-branches">
12 <h2>Source package branches</h2>
13@@ -71,5 +71,5 @@
14 </tbody>
15 </table>
16 </div>
17- </table>
18+ </div>
19 </fieldset>