email_v4.html 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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.name}}</div>
  13. <div>電話:{{context.phone}}</div>
  14. <div>郵件:{{context.mail}}</div> -->
  15. <!-- <div>性別:{{context.sex}}</div> -->
  16. <!-- <h1>裝修資料</h1>
  17. <table>
  18. <tr>
  19. <th>地區</th>
  20. <th>{{context.location}}</th>
  21. </tr>
  22. <tr>
  23. <th>房屋類型</th>
  24. <th>{{context.house_type}}</th>
  25. </tr>
  26. <tr>
  27. <th>屋齡</th>
  28. <th>{{context.house_year}}</th>
  29. </tr>
  30. <tr>
  31. <th>變動裝修</th>
  32. <th>{{context.change_area}}</th>
  33. </tr>
  34. <tr>
  35. <th>坪數</th>
  36. <th>{{context.pin}}</th>
  37. </tr>
  38. <tr>
  39. <th>房、廳、衛</th>
  40. <th>{{context.room}}房{{context.liveroom}}廳{{context.bathroom}}衛</th>
  41. </tr>
  42. <tr>
  43. <th>天花板</th>
  44. <th>{{context.ceiling}}</th>
  45. </tr>
  46. <tr>
  47. <th>地板</th>
  48. <th>{{context.floor}}</th>
  49. </tr>
  50. <tr>
  51. <th>隔間</th>
  52. <th>{{context.compartment}}</th>
  53. </tr>
  54. </table> -->
  55. </body>
  56. </html>