email.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>index</title>
  5. </head>
  6. <body>
  7. <!-- {% for Key, Value in context.items() %}
  8. <h1>Key: {{key}}</h1>
  9. <h2>Value: {{value}}</h2>
  10. {% endfor %} -->
  11. <h1>客戶資料</h1>
  12. <div>編號:{{context.time_stamp}}</div>
  13. <div>姓名:{{context.name}}</div>
  14. <div>電話:{{context.phone}}</div>
  15. <div>郵件:{{context.mail}}</div>
  16. <div>性別:{{context.sex}}</div>
  17. <h1>裝修資料</h1>
  18. <table>
  19. <tr>
  20. <th>地區</th>
  21. <th>{{context.area}}</th>
  22. </tr>
  23. <tr>
  24. <th>房屋類型</th>
  25. <th>{{context.type}}</th>
  26. </tr>
  27. <tr>
  28. <th>房屋型態</th>
  29. <th>{{context.mode}}</th>
  30. </tr>
  31. <tr>
  32. <th>裝修預算</th>
  33. <th>{{context.budget}}</th>
  34. </tr>
  35. <tr>
  36. <th>坪數</th>
  37. <th>{{context.pin}}</th>
  38. </tr>
  39. <tr>
  40. <th>房、廳、衛</th>
  41. <th>{{context.room}}房{{context.hall}}廳{{context.restroom}}衛</th>
  42. </tr>
  43. <tr>
  44. <th>風格類型</th>
  45. <th>{{context.style}}</th>
  46. </tr>
  47. <tr>
  48. <th>預計裝修日期</th>
  49. <th>{{context.time}}</th>
  50. </tr>
  51. </table>
  52. </body>
  53. </html>