File: orderaddress_multiview.html

package info (click to toggle)
python-django-extra-views 0.14.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 468 kB
  • sloc: python: 1,591; makefile: 142; sh: 6
file content (25 lines) | stat: -rw-r--r-- 314 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html>
<head>
        <title>Order and Address MultiView</title>
</head>
<body>

<form action="." method="post">

{{ order_form }}

<input type="submit" value="Submit" />

</form>

<form action="." method="post">

{{ address_form }}

<input type="submit" value="Submit" />

</form>

</body>
</html>