aboutsummaryrefslogtreecommitdiffstats
path: root/templates/bom_view.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/bom_view.html')
-rw-r--r--templates/bom_view.html12
1 files changed, 10 insertions, 2 deletions
diff --git a/templates/bom_view.html b/templates/bom_view.html
index 7eca3e3..94e99a8 100644
--- a/templates/bom_view.html
+++ b/templates/bom_view.html
@@ -11,11 +11,15 @@
<th>manufacturer
<th>mpn
<th>description
+ <th>category
+ <!--
<th>form_factor
<th>specs
- <th>category
<th>tag
+ -->
<th>comment
+ <th>price
+ <th>availability
</tr>
{{ range .Bom.LineItems }}
<tr>
@@ -24,11 +28,15 @@
<td>{{ .Manufacturer }}
<td>{{ .Mpn }}
<td>{{ .Description }}
+ <td>{{ .Category }}
+ <!--
<td>{{ .FormFactor }}
<td>{{ .Specs }}
- <td>{{ .Category }}
<td>{{ .Tag }}
+ -->
<td>{{ .Comment }}
+ <td><a href="{{ .AggregateInfo.OctopartUrl }}">{{ .AggregateInfo.MarketPrice }}</a>
+ <td>{{ .AggregateInfo.MarketFactor }}
</tr>
{{ end }}
</table>