summaryrefslogtreecommitdiffstats
path: root/templates/cashbox/add.html
blob: 6e26f0038f5ff9b03d9d6376a98f160847e660e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<div id="add-successful" class="alert alert-success" style="display: {{{NEW.OK}}};">
	<p>Successfully balanced cashbox:</p>
	
	<table class="table">
		<tr><th>Type</th><td>{{{TYPE}}}</td></tr>
		<tr><th>Amount</th><td>{{{AMOUNT}}}</td></tr>
	</table>
</div>

<div id="add-failed" class="alert alert-error" style="display: {{{NEW.FAIL}}};">
	<h4>Error</h4>
	Creating new cashbox balance entry failed. Please make
	sure you have sufficient permissions and gave valid
	values for type and amount.
</div>

<a href="/cashbox">Back to cashbox overview</a>