remove action column in requests index view for now

This commit is contained in:
dandds 2018-08-14 12:40:20 -04:00
parent bd1a3c09c4
commit 130b868128

View File

@ -101,7 +101,6 @@
{% endif %}
<th scope="col">Projected Annual Usage ($)</th>
<th scope="col">Request Status</th>
<th scope="col" class="table-cell--shrink">Actions</th>
</tr>
</thead>
<tbody>
@ -119,9 +118,6 @@
{% endif %}
<td>${{ r['annual_usage'] }}</td>
<td>{{ r['status'] }}</td>
<td class="table-cell--shrink">
<a href="/request/approval" class='icon-link'>Approval</a>
</td>
</tr>
{% endfor %}
</tbody>