blob: 88e25c4ff17f362b1198830a0aafd0e165389576 [file] [log] [blame]
{% extends 'dashboard/base.html' %}
{% block title %} Allocation Manager - Home{% endblock %}
{% block body %}
{% if all_requests %}
<h3 style="margin-left: 7%">My Requests</h3>
<!-- All Requests-->
<div class="container">
  <table class="table table-hover table-bordered table-striped table-responsive">
    <thead class="thead-inverse">
      <tr style="background-color: #337ab7;color:white">
        <th>Request-ID</th>
        <th>Request Title</th>
        <th>Request Description</th>
<th>Allocation Requested</th>
<th>Allocation Status</th>
      </tr>
    </thead>
    <tbody>
{% for request in all_requests %}
      <tr>
        <td>{{ request.id }}</td>
        <td>{{ request.request_title }}</td>
<td>{{ request.request_description }}</td>
        <td>10</td>
<td>Pending</td>
      </tr>
{% endfor %}
    </tbody>
  </table>
</div>
{% else %}
<h3>You don't have any requests</h3>
{% endif %}
{% endblock %}