blob: fc3058067130cca254e96cd2db9500c0ec3672ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<html lang="en">
<head>
<title>Hello World</title>
</head>
<body>
<h1>Hello {{ view.name }}!</h1>
<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>
</body>
</html>
|