base.html 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <title>To-Do lists</title>
  8. <link href="/static/bootstrap/css/bootstrap.min.css" rel="stylesheet">
  9. <link href="/static/base.css" rel="stylesheet">
  10. </head>
  11. <body>
  12. <div class="container">
  13. <div class="row">
  14. <div class="col-md-6 col-md-offset-3 jumbotron">
  15. <div class="text-center">
  16. <h1>{% block header_text %}{% endblock %}</h1>
  17. <form method="POST" action="{% block form_action %}{% endblock %}">
  18. <input name="item_text" id="id_new_item"
  19. class="form-control input-lg"
  20. placeholder="Enter a to-do item" />
  21. {% csrf_token %}
  22. </form>
  23. </div>
  24. </div>
  25. </div>
  26. <div class="row">
  27. <div class="col-md-6 col-md-offset-3">
  28. {% block table %}
  29. {% endblock %}
  30. </div>
  31. </div>
  32. </div>
  33. </body>
  34. </html>