diff options
author | Mete Polat <metepolat2000@gmail.com> | 2019-12-07 17:46:18 +0100 |
---|---|---|
committer | Stephen Finucane <stephen@that.guru> | 2019-12-27 16:31:29 +0000 |
commit | f6b5fe5c7afc263712629d0ed5458df11b159aa9 (patch) | |
tree | 8fb37aa8247d0872dcdfbf407ef32c324eba0a76 | |
parent | 04b26de56a6a12f999ff5b031117aad99a1b5364 (diff) | |
download | patchwork-f6b5fe5c7afc263712629d0ed5458df11b159aa9.tar patchwork-f6b5fe5c7afc263712629d0ed5458df11b159aa9.tar.gz |
templates: Combine series and related row
Move the series patch list from row 'Related' to 'Series'. This allows
us to use the 'Related' row for actually showing submission relations
instead.
Signed-off-by: Mete Polat <metepolat2000@gmail.com>
Reviewed-by: Stephen Finucane <stephen@that.guru>
-rw-r--r-- | htdocs/css/style.css | 2 | ||||
-rw-r--r-- | patchwork/templates/patchwork/submission.html | 69 |
2 files changed, 33 insertions, 38 deletions
diff --git a/htdocs/css/style.css b/htdocs/css/style.css index b9fb9eb..243caa0 100644 --- a/htdocs/css/style.css +++ b/htdocs/css/style.css @@ -192,7 +192,7 @@ table.patchmeta tr th, table.patchmeta tr td { vertical-align: top; } -.patchrelations ul { +.submissionlist ul { list-style-type: none; padding: 0; margin: 0; diff --git a/patchwork/templates/patchwork/submission.html b/patchwork/templates/patchwork/submission.html index 2706a55..77a2711 100644 --- a/patchwork/templates/patchwork/submission.html +++ b/patchwork/templates/patchwork/submission.html @@ -9,7 +9,7 @@ {% block body %} <script> -function toggle_div(link_id, headers_id) +function toggle_div(link_id, headers_id, label_show, label_hide) { var link = document.getElementById(link_id) var headers = document.getElementById(headers_id) @@ -17,10 +17,10 @@ function toggle_div(link_id, headers_id) var hidden = headers.style['display'] == 'none'; if (hidden) { - link.innerHTML = 'hide'; + link.innerHTML = label_hide || 'hide'; headers.style['display'] = 'block'; } else { - link.innerHTML = 'show'; + link.innerHTML = label_show || 'show'; headers.style['display'] = 'none'; } @@ -74,42 +74,37 @@ function toggle_div(link_id, headers_id) <th>Series</th> <td> <a href="{% url 'patch-list' project_id=project.linkname %}?series={{ submission.series.id }}"> - {{ submission.series }} - </a> - </td> - </tr> - <tr> - <th>Related</th> - <td> - <a id="togglepatchrelations" - href="javascript:toggle_div('togglepatchrelations', 'patchrelations')" - >show</a> - <div id="patchrelations" class="patchrelations" style="display:none;"> + {{ submission.series.name }} + </a> | + <a id="togglepatchseries" + href="javascript:toggle_div('togglepatchseries', 'patchseries', 'expand', 'collapse')" + >expand</a> + <div id="patchseries" class="submissionlist" style="display:none;"> <ul> - {% with submission.series.cover_letter as cover %} - <li> - {% if cover %} - {% if cover == submission %} - {{ cover.name|default:"[no subject]"|truncatechars:100 }} - {% else %} - <a href="{% url 'cover-detail' project_id=project.linkname msgid=cover.url_msgid %}"> - {{ cover.name|default:"[no subject]"|truncatechars:100 }} - </a> - {% endif %} - {% endif %} - </li> - {% endwith %} - {% for sibling in submission.series.patches.all %} - <li> - {% if sibling == submission %} - {{ sibling.name|default:"[no subject]"|truncatechars:100 }} - {% else %} - <a href="{% url 'patch-detail' project_id=project.linkname msgid=sibling.url_msgid %}"> - {{ sibling.name|default:"[no subject]"|truncatechars:100 }} - </a> + {% with submission.series.cover_letter as cover %} + <li> + {% if cover %} + {% if cover == submission %} + {{ cover.name|default:"[no subject]"|truncatechars:100 }} + {% else %} + <a href="{% url 'cover-detail' project_id=project.linkname msgid=cover.url_msgid %}"> + {{ cover.name|default:"[no subject]"|truncatechars:100 }} + </a> + {% endif %} {% endif %} - </li> - {% endfor %} + </li> + {% endwith %} + {% for sibling in submission.series.patches.all %} + <li> + {% if sibling == submission %} + {{ sibling.name|default:"[no subject]"|truncatechars:100 }} + {% else %} + <a href="{% url 'patch-detail' project_id=project.linkname msgid=sibling.url_msgid %}"> + {{ sibling.name|default:"[no subject]"|truncatechars:100 }} + </a> + {% endif %} + </li> + {% endfor %} </ul> </div> </td> |