Guest User

Untitled

a guest
May 20th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. <html>
  2. <body>
  3. <h1><b> Ecostalker </b></h1>
  4. <h2> Providing Notification of Updates to Regulation </h2>
  5. <table border="1">
  6. <tr>
  7. <td><b> Page Title </b></td>
  8. <td><b> Agency </b></td>
  9. <td><b> Description </b></td>
  10. <td><b> Url </b></td>
  11. <td><b> Date Updated </b></td>
  12. </tr>
  13. {% for pagewatch in PageWatches %}
  14. <tr>
  15. <td>{{ pagewatch.title }}</td>
  16. <td>{{ pagewatch.agency }}</td>
  17. <td>{{ pagewatch.blurb }}</td>
  18. <td>{{ pagewatch.url }}</td>
  19. <td>{{ pagewatch.date }}</td>
  20. </tr>
  21. {% endfor %}
  22. </table>
  23. Fill out the following information to add a new page to the watchlist.
  24.  
  25. <form action=url method="post">
  26. <div>Page Title:<input type='text' name="title" ></input></div>
  27. <div>Agency:<input type='text' name="agency" ></input></div>
  28. <div>Description:<textarea name="blurb" rows="2" cols="40"></textarea></div>
  29. <div>Url:<input type='text' name="url"></input></div>
  30. <div><input type="submit" value="Add New Page to Watch List"></div>
  31. </form>
  32. <hr>
  33. <form>Category name: <input value="category_name" name="category_name">
  34. <input type="submit" value="switch">
  35. </form>
  36.  
  37.  
  38. <a href="{{ url }}">{{ url_linktext }}</a>
  39.  
  40. </body>
  41. </html>
Add Comment
Please, Sign In to add comment