Skip to content

Commit

Permalink
Make the change status button a dropdown menu
Browse files Browse the repository at this point in the history
  • Loading branch information
asankov authored and atodorov committed Aug 5, 2020
1 parent 0753855 commit 694fae3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tcms/testruns/templates/testruns/get.html
Expand Up @@ -152,7 +152,12 @@ <h2 class="card-pf-title">
<button type="button" class="btn btn-default">{% trans "Remove case" %}</button>
<button type="button" class="btn btn-default">{% trans "Update case text" %}</button>
<button type="button" class="btn btn-default">{% trans "Change assignee" %}</button>
<button type="button" class="btn btn-default">{% trans "Change status" %}</button>
<div class="btn-group">
<button type="button" class="btn btn-default dropdown-toggle" id="filter-button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">{% trans "Change status" %} <span class="caret"></span></button>
<ul class="dropdown-menu">
{% comment %} TODO: populate with the statuses from the back-end {% endcomment %}
</ul>
</div>
<button type="button" class="btn btn-default">{% trans "Add comment" %}</button>
<button type="button" class="btn btn-default">{% trans "Add hyperlink" %}</button>
</div>
Expand Down

0 comments on commit 694fae3

Please sign in to comment.