diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2020-10-07 21:03:11 +0100 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2020-10-07 21:03:11 +0100 |
commit | 2e21f37eaf031300b4f7ec0626333255f16e7bd0 (patch) | |
tree | 420922015307fde6156345a942f383313f7df180 /ctrack/templates/base.html | |
parent | 2947010fe6fe3d54019164f9d8213a2fede55a45 (diff) |
big update! got working on gcloud and with log and new navbar
Diffstat (limited to 'ctrack/templates/base.html')
-rw-r--r-- | ctrack/templates/base.html | 218 |
1 files changed, 114 insertions, 104 deletions
diff --git a/ctrack/templates/base.html b/ctrack/templates/base.html index 40d6e5e..c1333a4 100644 --- a/ctrack/templates/base.html +++ b/ctrack/templates/base.html @@ -1,24 +1,25 @@ {% load static i18n %}<!DOCTYPE html> <html lang="en"> - <head> - <meta charset="utf-8"> - <meta http-equiv="x-ua-compatible" content="ie=edge"> - <title>{% block title %}ctrack - Department for Transport{% endblock title %}</title> - <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta name="description" content=""> - <meta name="author" content=""> +<head> + <meta charset="utf-8"> + <meta http-equiv="x-ua-compatible" content="ie=edge"> + <title>{% block title %}ctrack - Department for Transport{% endblock title %}</title> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta name="description" content=""> + <meta name="author" content=""> - <!-- HTML5 shim, for IE6-8 support of HTML5 elements --> - <!--[if lt IE 9]> - <script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script> - <![endif]--> + <!-- HTML5 shim, for IE6-8 support of HTML5 elements --> + <!--[if lt IE 9]> + <script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script> + <![endif]--> - <link rel="icon" href="{% static 'images/favicons/favicon.ico' %}"> + <link rel="icon" href="{% static 'images/favicons/favicon.ico' %}"> - {% block css %} + {% block css %} <!-- Latest compiled and minified Bootstrap CSS --> - <link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> + <link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet" + integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> <!-- Your stuff: Third-party CSS libraries go here --> @@ -26,109 +27,118 @@ <!-- This file stores project-specific CSS --> <link href="{% static 'css/project.css' %}" rel="stylesheet"> -{# <link rel="stylesheet" type="text/css" href="css/DataTables/datatables.min.css"/>#} -{# <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}/css/bootstrap.css" />#} - <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/v/dt/dt-1.10.20/af-2.3.4/b-1.6.1/b-print-1.6.1/cr-1.5.2/r-2.2.3/datatables.min.css"/> - - {% endblock %} - - </head> - - <body> - - <div class="mb-1"> - <nav class="navbar lemon-bar navbar-expand-md navbar-light bg-light"> - <button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> - <span class="navbar-toggler-icon"></span> - </button> - <a id="_title" class="navbar-brand" href="{% url 'core:home' %}">ctrack</a> - - <div class="collapse navbar-collapse" id="navbarSupportedContent"> - <ul class="navbar-nav mr-auto"> - <li class="nav-item active"> - <a class="nav-link" href="{% url 'core:home' %}">Home <span class="sr-only">(current)</span></a> - </li> - <li class="nav-item active"> - <a href="{% url 'caf:es_list' %}" class="nav-link">Systems in Scope</a> - </li> - - <li class="nav-item-dropdown"> - <a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" class="nav-link dropdown-toggle"> - Organisations - </a> - <div class="dropdown-menu" aria-labelledby="navbarDropdown"> - <a href="#" class="dropdown-item"><a href="{% url "organisations:list" %}">Organisations</a></a> - <a href="#" class="dropdown-item"><a href="{% url "organisations:people" %}">People</a></a> - <a href="#" class="dropdown-item">Another Action</a> - <div class="dropdown-divider"></div> - <a href="#" class="dropdown-item">Something else here</a> - </div> - </li> - - <li class="nav-item active"> - <a href="{% url 'caf:caf_list' %}" class="nav-link">CAF list</a> - </li> - <li class="nav-item"> - <a class="nav-link" href="{% url 'about' %}">About</a> - </li> - {% if request.user.is_authenticated %} - <li class="nav-item"> - {# URL provided by django-allauth/account/urls.py #} - <a class="nav-link" href="{% url 'users:detail' request.user.username %}">{% trans "My Profile" %}</a> - </li> - <li class="nav-item"> - {# URL provided by django-allauth/account/urls.py #} - <a class="nav-link" href="{% url 'account_logout' %}">{% trans "Sign Out" %}</a> - </li> - {% else %} - <li class="nav-item"> - {# URL provided by django-allauth/account/urls.py #} - <a id="log-in-link" class="nav-link" href="{% url 'account_login' %}">{% trans "Sign In" %}</a> - </li> - {% endif %} - </ul> - </div> - </nav> - + {# <link rel="stylesheet" type="text/css" href="css/DataTables/datatables.min.css"/>#} + {# <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}/css/bootstrap.css" />#} + <link rel="stylesheet" type="text/css" + href="https://cdn.datatables.net/v/dt/dt-1.10.20/af-2.3.4/b-1.6.1/b-print-1.6.1/cr-1.5.2/r-2.2.3/datatables.min.css"/> + + {% endblock %} + +</head> + +<body> + +<div class="mb-1"> + <nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark"> + <button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" + data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" + aria-label="Toggle navigation"> + <span class="navbar-toggler-icon"></span> + </button> + {# <a id="_title" class="navbar-brand" href="{% url 'core:home' %}">ctrack</a>#} + <a href="{% url 'core:home' %}"><img src="{% static "images/ctrack_pc_green.png" %}" alt="" height="38" width="55"></a> + + <div class="collapse navbar-collapse" id="navbarSupportedContent"> + <ul class="navbar-nav mr-auto"> + <li class="nav-item"> + <a href="{% url 'caf:es_list' %}" class="nav-link">Systems in Scope</a> + </li> + + + <li class="nav-item dropdown"> + <a class="nav-link dropdown-toggle" href="#" id="dropdown01" data-toggle="dropdown" aria-haspopup="true" + aria-expanded="false">Dropdown</a> + <div class="dropdown-menu" aria-labelledby="dropdown01"> + <a class="dropdown-item" href="#">Action</a> + <a class="dropdown-item" href="#">Another action</a> + <a class="dropdown-item" href="#">Something else here</a> + </div> + </li> + + <li class="nav-item"> + <a href="{% url 'caf:caf_list' %}" class="nav-link">CAF list</a> + </li> + <li class="nav-item"> + <a class="nav-link" href="{% url 'about' %}">Help</a> + </li> + {% if request.user.is_authenticated %} + <li class="nav-item"> + {# URL provided by django-allauth/account/urls.py #} + <a class="nav-link" href="{% url 'users:detail' request.user.username %}">{% trans "My Profile" %}</a> + </li> + <li class="nav-item"> + {# URL provided by django-allauth/account/urls.py #} + <a class="nav-link" href="{% url 'account_logout' %}">{% trans "Sign Out" %}</a> + </li> + {% else %} + <li class="nav-item"> + {# URL provided by django-allauth/account/urls.py #} + <a id="log-in-link" class="nav-link" href="{% url 'account_login' %}">{% trans "Sign In" %}</a> + </li> + {% endif %} + </ul> </div> + </nav> + +</div> - <div class="container"> +<div class="container"> - {% if messages %} - {% for message in messages %} - <div class="alert {% if message.tags %}alert-{{ message.tags }}{% endif %}">{{ message }}<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button></div> - {% endfor %} - {% endif %} + {% if messages %} + {% for message in messages %} + <div class="alert {% if message.tags %}alert-{{ message.tags }}{% endif %}">{{ message }} + <button type="button" class="close" data-dismiss="alert" aria-label="Close"><span + aria-hidden="true">×</span></button> + </div> + {% endfor %} + {% endif %} - {% block content %} - <p>Use this document as a way to quick start any new project.</p> - {% endblock content %} + {% block content %} + <p>Use this document as a way to quick start any new project.</p> + {% endblock content %} - </div> <!-- /container --> +</div> <!-- /container --> - {% block modal %}{% endblock modal %} +{% block modal %}{% endblock modal %} - <!-- Le javascript - ================================================== --> - <!-- Placed at the end of the document so the pages load faster --> - {% block javascript %} +<!-- Le javascript +================================================== --> +<!-- Placed at the end of the document so the pages load faster --> +{% block javascript %} - <!-- Bootstrap JS and its dependencies--> - <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script> - <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script> - <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script> + <!-- Bootstrap JS and its dependencies--> + <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" + integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" + crossorigin="anonymous"></script> + <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" + integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" + crossorigin="anonymous"></script> + <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" + integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" + crossorigin="anonymous"></script> - <!-- Your stuff: Third-party javascript libraries go here --> + <!-- Your stuff: Third-party javascript libraries go here --> - <!-- place project specific Javascript in this file --> + <!-- place project specific Javascript in this file --> - <script src="{% static 'js/project.js' %}"></script> -{# <script src="{% static 'js/DataTables/datatables.min.js' %}"></script>#} - <script type="text/javascript" src="https://cdn.datatables.net/v/dt/dt-1.10.20/af-2.3.4/b-1.6.1/b-print-1.6.1/cr-1.5.2/r-2.2.3/datatables.min.js"></script> + <script src="{% static 'js/project.js' %}"></script> + {# <script src="{% static 'js/DataTables/datatables.min.js' %}"></script>#} + <script type="text/javascript" + src="https://cdn.datatables.net/v/dt/dt-1.10.20/af-2.3.4/b-1.6.1/b-print-1.6.1/cr-1.5.2/r-2.2.3/datatables.min.js"></script> - {% endblock javascript %} - </body> +{% endblock javascript %} +</body> </html> |