email.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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.area}}</th>
  21. </tr>
  22. <tr>
  23. <th>房屋類型</th>
  24. <th>{{context.type}}</th>
  25. </tr>
  26. <tr>
  27. <th>房屋型態</th>
  28. <th>{{context.mode}}</th>
  29. </tr>
  30. <tr>
  31. <th>裝修預算</th>
  32. <th>{{context.budget}}</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.hall}}廳{{context.restroom}}衛</th>
  41. </tr>
  42. <tr>
  43. <th>風格類型</th>
  44. <th>{{context.style}}</th>
  45. </tr>
  46. <tr>
  47. <th>預計裝修日期</th>
  48. <th>{{context.time}}</th>
  49. </tr>
  50. </table>
  51. </body>
  52. </html>