ctucx.git: ctucx.things

simple inventory management web-app

1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
17 
18 
19 
20 
21 
22 
23 
24 
25 
26 
27 
28 
29 
30 
31 
{{#categories}}
<li class="lpCategory" id="{{id}}">
	<ul class="lpItems lpDataTable">
		<li class="lpHeader lpItemsHeader">
			<h2 class="lpCategoryName">{{name}}</h2>

			{{#show.price}}
			<span class="lpPriceCell">Price</span>
			{{/show.price}}

			{{#show.weight}}
			<span class="lpWeightCell">Weight</span>
			{{/show.weight}}

			<span class="lpQtyCell">qty</span>
		</li>
		{{>item}}
		<li class="lpFooter lpItemsFooter">
			{{#show.price}}
			<span class="lpPriceCell lpNumber"><div class="lpPriceSubtotal">{{subtotalPrice}} {{currencySymbol}}</div></span>
			{{/show.price}}

			{{#show.weight}}
			<span class="lpWeightCell lpNumber"><div class="lpSubtotal"><span class="lpDisplaySubtotal" mg="{{subtotalWeight}}">{{subtotalWeightDisplay}}</span> <span class="lpSubtotalUnit">{{totalUnit}}</span></div></span>
			{{/show.weight}}

			<span class="lpQtyCell lpNumber"><div class="lpSubtotal"><span class="lpQtySubtotal">{{subtotalQty}}</span></div></span>
		</li>
	</ul>
</li>
{{/categories}}