mirror of https://github.com/snachodog/mybuddy.git
78 lines
3.8 KiB
HTML
78 lines
3.8 KiB
HTML
{% load static %}
|
|
{% load timers %}
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport"
|
|
content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<title>{% block title %}{% endblock %} | Baby Blotter</title>
|
|
<link rel="stylesheet"
|
|
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css"
|
|
integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M"
|
|
crossorigin="anonymous" />
|
|
<link rel="stylesheet"
|
|
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
|
|
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
|
|
crossorigin="anonymous" />
|
|
<link rel="stylesheet" href="{% static "css/tempusdominus-bootstrap-4.min.css" %}" />
|
|
</head>
|
|
<body style="padding-top: 5rem;">
|
|
<nav class="navbar navbar-expand-md navbar-dark bg-dark fixed-top">
|
|
<a class="navbar-brand" href="/"><span class="text-info">Baby</span> Blotter</a>
|
|
<button class="navbar-toggler" type="button" data-toggle="collapse"
|
|
data-target="#navbarsExampleDefault"
|
|
aria-controls="navbarsExampleDefault" aria-expanded="false"
|
|
aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
|
|
<div class="collapse navbar-collapse" id="navbarsExampleDefault">
|
|
<ul class="navbar-nav mr-auto">
|
|
<li class="nav-item{% if request.path == '/' %} active{% endif %}">
|
|
<a class="nav-link" href="{% url 'index' %}"><i class="fa fa-dashboard" aria-hidden="true"></i> Dashboard</a>
|
|
</li>
|
|
<li class="nav-item{% if request.path == '/children/' %} active{% endif %}">
|
|
<a class="nav-link" href="{% url 'child-list' %}"><i class="fa fa-child" aria-hidden="true"></i> Children</a>
|
|
</li>
|
|
<li class="nav-item{% if request.path == '/changes/' %} active{% endif %}">
|
|
<a class="nav-link" href="{% url 'diaperchange-list' %}"><i class="fa fa-trash" aria-hidden="true"></i> Changes</a>
|
|
</li>
|
|
<li class="nav-item{% if request.path == '/feedings/' %} active{% endif %}">
|
|
<a class="nav-link" href="{% url 'feeding-list' %}"><i class="fa fa-spoon" aria-hidden="true"></i> Feedings</a>
|
|
</li>
|
|
<li class="nav-item{% if request.path == '/sleep/' %} active{% endif %}">
|
|
<a class="nav-link" href="{% url 'sleep-list' %}"><i class="fa fa-bed" aria-hidden="true"></i> Sleep</a>
|
|
</li>
|
|
<li class="nav-item{% if request.path == '/tummy-time/' %} active{% endif %}">
|
|
<a class="nav-link" href="{% url 'tummytime-list' %}"><i class="fa fa-smile-o" aria-hidden="true"></i> Tummy Time</a>
|
|
</li>
|
|
<li class="nav-item{% if request.path == '/notes/' %} active{% endif %}">
|
|
<a class="nav-link" href="{% url 'note-list' %}"><i class="fa fa-sticky-note" aria-hidden="true"></i> Notes</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</nav>
|
|
|
|
<div id="view-{{ request.resolver_match.view_name }}" class="container-fluid">
|
|
<div class="row justify-content-md-center">
|
|
<div class="col-lg-8 mb-4">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
<div class="col-lg-2">
|
|
<h1>Timers</h1>
|
|
{% add_timer request.path %}
|
|
{% list_timers %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment.min.js"
|
|
integrity="sha256-1hjUhpc44NwiNg8OwMu2QzJXhD8kcj+sJA3aCQZoUjg="
|
|
crossorigin="anonymous"></script>
|
|
<script src="{% static "js/tempusdominus-bootstrap-4.min.js" %}"></script>
|
|
{% block javascript %}{% endblock %}
|
|
</body>
|
|
</html> |