12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>index</title>
- </head>
- <body>
- <!-- {% for Key, Value in context.items() %}
- <h1>Key: {{key}}</h1>
- <h2>Value: {{value}}</h2>
- {% endfor %} -->
- <h1>客戶資料</h1>
- <div>姓名:{{context.name}}</div>
- <div>電話:{{context.phone}}</div>
- <div>郵件:{{context.mail}}</div>
- <div>性別:{{context.sex}}</div>
- <h1>裝修資料</h1>
- <table>
- <tr>
- <th>地區</th>
- <th>{{context.area}}</th>
- </tr>
- <tr>
- <th>房屋類型</th>
- <th>{{context.type}}</th>
- </tr>
- <tr>
- <th>房屋型態</th>
- <th>{{context.mode}}</th>
- </tr>
- <tr>
- <th>裝修預算</th>
- <th>{{context.budget}}</th>
- </tr>
- <tr>
- <th>坪數</th>
- <th>{{context.pin}}</th>
- </tr>
- <tr>
- <th>房、廳、衛</th>
- <th>{{context.room}}房{{context.hall}}廳{{context.restroom}}衛</th>
- </tr>
- <tr>
- <th>風格類型</th>
- <th>{{context.style}}</th>
- </tr>
- <tr>
- <th>預計裝修日期</th>
- <th>{{context.time}}</th>
- </tr>
- </table>
- </body>
- </html>
|