Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

reorder columns to make most important info first #79

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions homu/html/queue.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ <h1>Homu queue - {{repo_label}}</h1>
<th><input type="checkbox"></th>
<th>#</th>
<th>Status</th>
<th>Priority</th>
<th>Head ref</th>
<th>Title</th>
<th>Approved by</th>
<th>Mergeable</th>
<th>Title</th>
<th>Head ref</th>
<th>Assignee</th>
<th>Approved by</th>
<th>Priority</th>
</tr>
</thead>

Expand All @@ -68,12 +68,12 @@ <h1>Homu queue - {{repo_label}}</h1>
<td><input type="checkbox" data-num="{{state.num}}"></td>
<td><a href="{{state.url}}">{{state.num}}</a></td>
<td class="{{state.status}}">{{state.status}}{{state.status_ext}}</td>
<td>{{state.priority}}</td>
<td>{{state.head_ref}}</td>
<td>{{state.title}}</td>
<td>{{state.approved_by}}</td>
<td class="{{state.mergeable}}">{{state.mergeable}}</td>
<td>{{state.title}}</td>
<td>{{state.head_ref}}</td>
<td>{{state.assignee}}</td>
<td>{{state.approved_by}}</td>
<td>{{state.priority}}</td>
</tr>
{% endfor %}
</tbody>
Expand Down