13 lines
263 B
Django/Jinja
13 lines
263 B
Django/Jinja
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Revbank Deposit</title>
|
|
</head>
|
|
<body>
|
|
<form method="post" action="/">
|
|
{% for amount in [10, 20, 40, 80] -%}
|
|
€ <input type="submit" name="amount" value="{{ amount }}" />
|
|
{% endfor -%}
|
|
</form>
|
|
</body>
|
|
<html>
|