40 lines
1 KiB
HTML
40 lines
1 KiB
HTML
{% extends "baselayout.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block title %}
|
|
{% translate "Drinks - Deposit" %}
|
|
{% endblock %}
|
|
|
|
{% block headAdditional %}
|
|
<link rel="stylesheet" href="/static/css/appform.css">
|
|
{% endblock %}
|
|
|
|
|
|
{% block content %}
|
|
|
|
<form id="depositform" class="appform">
|
|
{% csrf_token %}
|
|
|
|
<h1 class="formheading">{% translate "Deposit" %}</h1>
|
|
|
|
<div class="forminput">
|
|
<span>{% translate "Amount" %} {{ currency_suffix }}:</span>
|
|
<span>
|
|
<input type="number" name="depositamount" id="depositamount" max="9999.99" min="1.00" step="0.01" autofocus>
|
|
</span>
|
|
</div>
|
|
|
|
<div id="statusinfo"></div>
|
|
|
|
<div class="formbuttons">
|
|
<a href="/" class="button">{% translate "cancel" %}</a>
|
|
<input type="submit" id="depositsubmitbtn" class="button" value='{% translate "confirm" %}'>
|
|
</div>
|
|
|
|
</form>
|
|
|
|
<script src="/static/js/deposit.js"></script>
|
|
<script src="/static/js/autoreload.js"></script>
|
|
|
|
{% endblock %}
|