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
=== modified file 'lib/lp/code/templates/sourcepackagerecipe-related-branches.pt'
--- lib/lp/code/templates/sourcepackagerecipe-related-branches.pt 2011-02-02 01:05:53 +0000
+++ lib/lp/code/templates/sourcepackagerecipe-related-branches.pt 2011-02-03 12:57:06 +0000
@@ -4,7 +4,7 @@
4 packageBranches view/related_package_branch_info"4 packageBranches view/related_package_branch_info"
5 tal:condition="python: seriesBranches or packageBranches">5 tal:condition="python: seriesBranches or packageBranches">
6 <legend>Related Branches</legend>6 <legend>Related Branches</legend>
7 <table>7 <div class="extra-options">
88
9 <div tal:condition="packageBranches" id="related-package-branches">9 <div tal:condition="packageBranches" id="related-package-branches">
10 <h2>Source package branches</h2>10 <h2>Source package branches</h2>
@@ -71,5 +71,5 @@
71 </tbody>71 </tbody>
72 </table>72 </table>
73 </div>73 </div>
74 </table>74 </div>
75</fieldset>75</fieldset>