Skip to content

Commit

Permalink
Add 'Owner' field to /projects page's tables.
Browse files Browse the repository at this point in the history
  • Loading branch information
george-thomas-hill committed Jul 29, 2020
1 parent 7363e61 commit 36abfe5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions views/projects.handlebars
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
<th scope="col">Name</th>
<th scope="col">Due Date</th>
<th scope="col">Status</th>
<th scope="col">Owner</th>
<th scope="col">Manage</th>
</tr>
</thead>
Expand All @@ -78,6 +79,7 @@
<td>{{Project_Name}}</td>
<td {{#if isOverdue}} class="danger"{{/if}}>{{Due_Date}}</td>
<td>{{Status}}</td>
<td>{{name}}</td>
<td>
<a href="/project/{{Project_ID}}">
<button type="button" class="btn btn-success">
Expand Down Expand Up @@ -163,6 +165,7 @@
<th scope="col">Name</th>
<th scope="col">Due Date</th>
<th scope="col">Status</th>
<th scope="col">Owner</th>
<th scope="col">Manage</th>
</tr>
</thead>
Expand All @@ -174,6 +177,7 @@
<td>{{Project_Name}}</td>
<td>{{Due_Date}}</td>
<td>{{Status}}</td>
<td>{{name}}</td>
<td>
<a href="/project/{{Project_ID}}">
<button type="button" class="btn btn-success">
Expand Down

0 comments on commit 36abfe5

Please sign in to comment.