blob: 3446b96cee938e0995b7888dc586a1b51f0d80f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE html>
<html lang="en">
<head>
<title>Hello World</title>
</head>
<body>
<h1>Hello {{ view.name }}!</h1>
<!-- Start Form 1 -->
<form method="POST"
action="{{ request.current_route_url() }}">
<input name="new_name"/>
<input type="submit" name="form.edit" value="Save"/>
<input type="submit" name="form.delete" value="Delete"/>
</form>
<!-- End Form 1 -->
</body>
</html>
|