user-base.html 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {% load static %}
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  6. <meta name="description" content="">
  7. <meta name="author" content="">
  8. <title>Byte Trek Review Bot</title>
  9. <link rel="canonical" href="https://getbootstrap.com/docs/4.0/examples/dashboard/">
  10. <!-- Bootstrap core CSS -->
  11. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
  12. <!-- Custom styles for this template -->
  13. <link rel="stylesheet" type="text/css" href="{% static 'user-dashboard.css' %}">
  14. </head>
  15. <body>
  16. <nav class="navbar navbar-dark sticky-top bg-dark flex-md-nowrap p-0">
  17. <a class="navbar-brand col-sm-3 col-md-2 mr-0" href="#">BT Review Bot</a>
  18. <ul class="navbar-nav px-3">
  19. <li class="nav-item text-nowrap">
  20. <a class="nav-link" href="#">Sign out</a>
  21. </li>
  22. </ul>
  23. </nav>
  24. <div class="container-fluid">
  25. <div class="row">
  26. {% include '_navbar.html' %}
  27. <main role="main" class="col-md-9 ml-sm-auto col-lg-10 pt-3 px-4">
  28. <div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pb-2 mb-3 border-bottom">
  29. <h1 class="h2">Dashboard</h1>
  30. <div class="btn-toolbar mb-2 mb-md-0">
  31. <div class="btn-group mr-2">
  32. <button class="btn btn-sm btn-outline-secondary">Export</button>
  33. </div>
  34. <button class="btn btn-sm btn-outline-secondary dropdown-toggle">
  35. <span data-feather="calendar"></span>
  36. This week
  37. </button>
  38. </div>
  39. </div>
  40. {% block content %}
  41. {% endblock %}
  42. </main>
  43. </div>
  44. </div>
  45. <!-- Bootstrap core JavaScript
  46. ================================================== -->
  47. <!-- Placed at the end of the document so the pages load faster -->
  48. <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
  49. <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
  50. <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
  51. <script>window.jQuery || document.write('<script src="/static/jquery-slim.min.js"><\/script>')</script>
  52. <!-- Icons -->
  53. <script src="https://unpkg.com/feather-icons/dist/feather.min.js"></script>
  54. <script>
  55. feather.replace()
  56. </script>
  57. <!-- Graphs -->
  58. </body>
  59. </html>