Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
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
Binary file added Documents/Sprint 1 Plan.pdf
Binary file not shown.
Binary file removed Documents/SprintPlan.pdf
Binary file not shown.
36 changes: 36 additions & 0 deletions add_resource.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{{extend 'layout.html'}}

<h2>Add resource</h2>

{{=(form)}}

<p />


<head>
<style>
table, th, td {
border: 1px solid black;
}
</style>
</head>

<table style="width:100%">
<tr>
<strong>
<th>Resource Id</th>
<th>Resource Type</th>
<th>Resource Qty</th>
<th>Resource Owner</th>
</strong>
</tr>

{{for specification in specifications:}}
<tr>
<td>{{=specification.resources_id}}</td>
<td>{{=specification.resources_type}}</td>
<td>{{=specification.resources_qty}}</td>
<td>{{=specification.resource_owner.username}}</td>
</tr>
{{pass}}
</table>
Loading