| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 | <!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.time_stamp}}</div>      <div>姓名:{{context.name}}</div>      <div>電話:{{context.phone}}</div>      <div>郵件:{{context.mail}}</div>      <!-- <div>性別:{{context.sex}}</div> -->      <h1>裝修資料</h1>      <table>        <tr>          <th>地區</th>          <th>{{context.location}}</th>        </tr>        <tr>          <th>房屋類型</th>          <th>{{context.house_type}}</th>        </tr>        <tr>          <th>屋齡</th>          <th>{{context.house_year}}</th>        </tr>        <tr>          <th>變動裝修</th>          <th>{{context.change_area}}</th>        </tr>        <tr>          <th>坪數</th>          <th>{{context.pin}}</th>        </tr>        <tr>          <th>房、廳、衛</th>          <th>{{context.room}}房{{context.liveroom}}廳{{context.bathroom}}衛</th>        </tr>        <tr>          <th>天花板</th>          <th>{{context.ceiling}}</th>        </tr>        <tr>          <th>地板</th>          <th>{{context.floor}}</th>        </tr>        <tr>          <th>隔間</th>          <th>{{context.compartment}}</th>        </tr>      </table>    </body></html>
 |