email_v3.html 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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.location}}</th>
  22. </tr>
  23. <tr>
  24. <th>房屋類型</th>
  25. <th>{{context.house_type}}</th>
  26. </tr>
  27. <tr>
  28. <th>屋齡</th>
  29. <th>{{context.house_year}}</th>
  30. </tr>
  31. <tr>
  32. <th>變動裝修</th>
  33. <th>{{context.change_area}}</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.liveroom}}廳{{context.bathroom}}衛</th>
  42. </tr>
  43. <tr>
  44. <th>天花板</th>
  45. <th>{{context.ceiling}}</th>
  46. </tr>
  47. <tr>
  48. <th>地板</th>
  49. <th>{{context.floor}}</th>
  50. </tr>
  51. <tr>
  52. <th>隔間</th>
  53. <th>{{context.compartment}}</th>
  54. </tr>
  55. </table>
  56. </body>
  57. </html>