Guest User

Untitled

a guest
Oct 12th, 2018
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.67 KB | None | 0 0
  1. whats on page:
  2. _______________
  3.  
  4. <html>
  5.  
  6. <head>
  7.  
  8. <meta http-equiv="Content-Language" content="en-us">
  9.  
  10. <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
  11.  
  12. <title>Zafafe</title>
  13.  
  14. </head>
  15.  
  16. <body>
  17.  
  18.  
  19.  
  20.  
  21. <table border="1" width="100%" style="border-width: 0px">
  22.  
  23. <tr>
  24.  
  25. <td bgcolor="#FF9999" style="border-style: none; border-width: medium">
  26.  
  27. <div style="background-color: #FF9999">
  28.  
  29. <p align="center">
  30.  
  31. <font size="7" color="#FFFFFF" face="Arial Narrow">
  32.  
  33. <span style="background-color: #FF9999">Zafafe</span></font></div>
  34.  
  35. <p align="center"><font size="6" color="#FFFFFF" face="Blackadder ITC">
  36.  
  37. <b><span style="background-color: #FF9999">Welcome Our Lovely Bride
  38.  
  39. </span></b></font></td>
  40.  
  41. </tr>
  42.  
  43. </table>
  44.  
  45. <table border="1" width="100%" style="border-width: 0px">
  46.  
  47. <tr>
  48.  
  49. <td style="border-style: none; border-width: medium" align="center">
  50.  
  51. <p align="center"><u>
  52.  
  53. <font face="Blackadder ITC" color="#FF9999" size="5">Home</font></u></td>
  54.  
  55. <td style="border-style: none; border-width: medium" align="center"><u>
  56.  
  57. <b><i><font face="Blackadder ITC" size="5" color="#C0C0C0">What's On</font></i></b></u></td>
  58.  
  59. <td style="border-style: none; border-width: medium" align="center"><u>
  60.  
  61. <font face="Blackadder ITC" color="#FF9999" size="5">My Checklist </font>
  62.  
  63. </u></td>
  64.  
  65. <td style="border-style: none; border-width: medium" align="center"><u>
  66.  
  67. <font size="5" face="Blackadder ITC" color="#FF9999">About Us</font></u></td>
  68.  
  69. <td style="border-style: none; border-width: medium" align="center"><u>
  70.  
  71. <font color="#FF9999" size="5" face="Blackadder ITC">Contact Us</font></u></td>
  72.  
  73. </tr>
  74.  
  75. </table>
  76.  
  77. <table border="1" width="100%">
  78.  
  79. <tr>
  80.  
  81. <td><b><u><font color="#FF9999" size="4">Sort By:</font></u><font color="#FF9999" size="4">
  82.  
  83. </font></b><font size="5" face="Blackadder ITC" color="#FF9999">
  84.  
  85. <input type="checkbox" name="C10" value="ON" style="font-weight: 700; text-decoration: underline"></font><b><font color="#FF9999" size="5" face="Blackadder ITC">Ball Rooms</font></b><font size="5" face="Blackadder ITC" color="#FF9999"><input type="checkbox" name="C9" value="ON" style="font-weight: 700; "><b>Gowns</b><input type="checkbox" name="C2" value="ON" style="font-weight: 700; "><b>Catering </b>
  86.  
  87. <input type="checkbox" name="C3" value="ON" style="font-weight: 700; "><b>Flowers </b>
  88.  
  89. <input type="checkbox" name="C7" value="ON" style="font-weight: 700; "><b>Salons </b>
  90.  
  91. <input type="checkbox" name="C8" value="ON" style="font-weight: 700; "><b>Cards </b>
  92.  
  93. <input type="checkbox" name="C4" value="ON" style="font-weight: 700; "><b>Photographer </b>
  94.  
  95. <input type="checkbox" name="C5" value="ON" style="font-weight: 700; "><b>DJ</b></font></td>
  96.  
  97. </tr>
  98.  
  99. </table>
  100.  
  101. <p>&nbsp;</p>
  102.  
  103. <table border="1" width="100%" height="51">
  104.  
  105. <tr>
  106.  
  107. <td>
  108.  
  109. <p align="center"><font color="#FF9999">
  110.  
  111. <input type="text" name="T1" size="37" value="Thinking of something? POST IT !"></font></td>
  112.  
  113. </tr>
  114.  
  115. </table>
  116.  
  117. <p align="center">&nbsp;
  118.  
  119.  
  120.  
  121. {% if msgs %}
  122.  
  123.  
  124.  
  125. <ol>
  126. {% for what in msgs %}
  127. <li>
  128. <a > {{what.content}} : {{what.date_and_time}} : {{what.disply_name}} : {{what.author}}
  129. </a>
  130. </li>
  131. {% endfor %}
  132. </ol>
  133.  
  134.  
  135.  
  136.  
  137. {% else %}
  138. <p>No msgs are available.</p>
  139. {% endif %}
  140.  
  141.  
  142.  
  143. </p>
  144.  
  145.  
  146.  
  147.  
  148. <ul>
  149.  
  150.  
  151.  
  152.  
  153. {% for list in checklist %}
  154. <li>{{ list.notes }} : {{ list.author }} : {{ list.date_and_time}} </li>
  155.  
  156. <li> Tasks:
  157. <ul>
  158. {% for view in list.checklistitem_set.all %}
  159. <li><input type=checkbox
  160. {% if view.task_done %}
  161. checked="checked"
  162. {% endif %}
  163. >
  164.  
  165. {{ view.notes }} : {{ view.due_date_task}} </li>
  166. {% endfor %}
  167. </ul>
  168. </li>
  169. {% endfor %}
  170. </ul>
  171.  
  172. </body>
  173.  
  174. </html>
  175.  
  176. __________________________________________________________________________________________________________
  177.  
  178. Checklist Page:
  179. ________________
  180.  
  181. <html>
  182.  
  183. <head>
  184.  
  185. <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
  186.  
  187. <title>Zafafe</title>
  188.  
  189. </head>
  190.  
  191. <body>
  192.  
  193. <table border="1" width="100%" style="border-width: 0px">
  194.  
  195. <tr>
  196.  
  197. <td bgcolor="#FF9999" style="border-style: none; border-width: medium">
  198.  
  199. <div style="background-color: #FF9999">
  200.  
  201. <p align="center">
  202.  
  203. <font size="7" color="#FFFFFF" face="Arial Narrow">
  204.  
  205. <span style="background-color: #FF9999">Zafafe</span></font></div>
  206.  
  207. <p align="center"><font size="6" color="#FFFFFF" face="Blackadder ITC">
  208.  
  209. <b><span style="background-color: #FF9999">Welcome Our Lovely Bride
  210.  
  211. </span></b></font></td>
  212.  
  213. </tr>
  214.  
  215. </table>
  216.  
  217. <table border="1" width="100%" style="border-width: 0px">
  218.  
  219. <tr>
  220.  
  221. <td style="border-style: none; border-width: medium" align="center">
  222.  
  223. <p align="center"><u>
  224.  
  225. <font face="Blackadder ITC" color="#FF9999" size="5">Home</font></u></td>
  226.  
  227. <td style="border-style: none; border-width: medium" align="center"><u>
  228.  
  229. <font face="Blackadder ITC" size="5" color="#FF9999">What's On</font></u></td>
  230.  
  231. <td style="border-style: none; border-width: medium" align="center"><i>
  232.  
  233. <b><u>
  234.  
  235. <font face="Blackadder ITC" color="#C0C0C0" size="5">My Checklist </font>
  236.  
  237. </u></b></i></td>
  238.  
  239. <td style="border-style: none; border-width: medium" align="center"><u>
  240.  
  241. <font size="5" face="Blackadder ITC" color="#FF9999">About Us</font></u></td>
  242.  
  243. <td style="border-style: none; border-width: medium" align="center"><u>
  244.  
  245. <font color="#FF9999" size="5" face="Blackadder ITC">Contact Us</font></u></td>
  246.  
  247. </tr>
  248.  
  249. </table>
  250.  
  251. <table border="1" width="100%">
  252.  
  253. <tr>
  254.  
  255. <td>
  256.  
  257. <p align="center">&nbsp;</p>
  258.  
  259. <p align="center"><font color="#FF9999">If you think of creating your
  260.  
  261. own check list </font></p>
  262.  
  263. <p align="center"><font color="#FF9999">you can start here,, </font></p>
  264.  
  265. <form method="POST" action="--WEBBOT-SELF--">
  266.  
  267. <!--webbot bot="SaveResults" U-File="C:\Documents and Settings\compcnt\Desktop\_private\form_results.csv" S-Format="TEXT/CSV" S-Label-Fields="TRUE" -->
  268.  
  269. <p align="center"><font color="#FF9999">&nbsp;Username:
  270.  
  271. <input type="text" name="T1" size="20"></font></p>
  272.  
  273. <p align="center"><font color="#FF9999">Password: </font>
  274.  
  275. <input type="text" name="T2" size="20"></p>
  276.  
  277. <p align="center">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  278.  
  279. <input type="submit" value="Log In"> or&nbsp;
  280.  
  281. <input type="reset" value="Register NOW" name="B2"></p>
  282.  
  283. </form>
  284.  
  285. <p align="center">&nbsp;</td>
  286.  
  287. </tr>
  288.  
  289. </table>
  290.  
  291. <table border="1" width="17%">
  292.  
  293. <tr>
  294.  
  295. <td>
  296.  
  297. <form method="POST" action="--WEBBOT-SELF--">
  298.  
  299. <!--webbot bot="SaveResults" U-File="C:\Documents and Settings\compcnt\Desktop\_private\form_results.csv" S-Format="TEXT/CSV" S-Label-Fields="TRUE" -->
  300. <ul>
  301. {% for list in checklist.checklistitem_set.all %}
  302.  
  303.  
  304. <p align="left"><input type="radio" value="V1" name="R1"><input type="checkbox" name="C1" value="ON"> <u><b>
  305. <font color="#FF9999" size="5" face="Blackadder ITC"> </font></b></u></p>
  306.  
  307. <li>{{ list.notes }} : {{ list.task_done }} : {{ list.due_date_task}} </li>
  308. {% endfor %}
  309.  
  310.  
  311.  
  312. </ul>
  313.  
  314. </body>
  315.  
  316. </html>
Add Comment
Please, Sign In to add comment