mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-20 15:02:31 +00:00
60 lines
907 B
HTML
60 lines
907 B
HTML
{% extends 'base_rigs.html' %}
|
|
{% load static %}
|
|
|
|
{% block title %}Calendar{% endblock %}
|
|
|
|
{% block css %}
|
|
<style>
|
|
|
|
.calendar {
|
|
width: 98%;
|
|
margin: auto;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.calendar tr, .calendar td {
|
|
border: 1px solid black;
|
|
}
|
|
|
|
.calendar th {
|
|
padding: 10px;
|
|
text-align: center;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.calendar td {
|
|
width: 200px;
|
|
height: 150px;
|
|
padding: 20px 0px 0px 5px;
|
|
}
|
|
|
|
.month {
|
|
font-size: 25px;
|
|
}
|
|
|
|
.date {
|
|
font-size: 16px;
|
|
}
|
|
|
|
ul {
|
|
height: 100%;
|
|
padding: 0px 5px 0px 20px;
|
|
}
|
|
|
|
a {
|
|
color: #17a2b8;
|
|
}
|
|
.badge-purple, .bg-purple {
|
|
background-color: #800080 !important;
|
|
}
|
|
</style>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="clearfix">
|
|
<a class="btn btn-info left" href="{% url 'web_calendar' %}?{{ prev_month }}"> Previous Month </a>
|
|
<a class="btn btn-info right" href="{% url 'web_calendar' %}?{{ next_month }}"> Next Month </a>
|
|
</div>
|
|
{{ calendar }}
|
|
{% endblock %}
|