2025-02-17 01:22:07 +00:00
|
|
|
<h3 class="title">Projects</h3>
|
2025-03-23 10:33:02 +00:00
|
|
|
<a href="/project/create">create new project</a>
|
|
|
|
|
<hr>
|
2025-02-17 01:22:07 +00:00
|
|
|
<table class="table is-fullwidth is-hoverable is-bordered">
|
|
|
|
|
<thead>
|
2025-03-23 10:33:02 +00:00
|
|
|
<tr class="has-background-primary">
|
2025-02-17 01:22:07 +00:00
|
|
|
<th>ID</th>
|
|
|
|
|
<th>Title</th>
|
|
|
|
|
<th>Requester</th>
|
|
|
|
|
<th>Created By</th>
|
|
|
|
|
<th>Created At</th>
|
|
|
|
|
<th>Start Date</th>
|
|
|
|
|
<th>End Date</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
2025-03-23 10:33:02 +00:00
|
|
|
<repeat group="{{ @projects }}" value="{{ @p }}">
|
2025-02-17 01:22:07 +00:00
|
|
|
<tr>
|
2025-03-23 10:33:02 +00:00
|
|
|
<td>{{ @p.id }}</td>
|
|
|
|
|
<td><a href="/project/{{@p.id}}">{{ @p.title }}</a></td>
|
|
|
|
|
<td>{{ @p.requester }}</td>
|
|
|
|
|
<td>{{ @p.created_by }}</td>
|
|
|
|
|
<td>{{ @p.created_at }}</td>
|
|
|
|
|
<td>{{ @p.start_date }}</td>
|
|
|
|
|
<td>{{ @p.end_date }}</td>
|
2025-02-17 01:22:07 +00:00
|
|
|
</tr>
|
2025-03-23 10:33:02 +00:00
|
|
|
</repeat>
|
2025-02-17 01:22:07 +00:00
|
|
|
</tbody>
|
|
|
|
|
</table>
|