diff --git a/main/templates/pages/work.html b/main/templates/pages/work.html new file mode 100644 index 0000000..bd760cb --- /dev/null +++ b/main/templates/pages/work.html @@ -0,0 +1,74 @@ +{% extends 'base/base.html' %} + +{% load static %} + +{% block title %}{{ pagename }}{% endblock %} + +{% block heading %}Управление{% endblock %} + +{% block extra_css %} + +{% endblock %} + +{% block content %} +
+ +
+

Основаная информация о странице

+
+ +
+
+
Список сотрудников с правами инженера
+ + + + + + + + + + + + + + + + + + + + + + +
IDemailExpiration DateName(link to profile)
1big_boss123@example.ru19:30 18.02.21Иван Иванов
2gachi_cool456@example.ru21:00 18.02.21Пётр Петров
+
+
+
+
+
+
+
инженеров:
+
+
+ 13 +
+
+
+
легких агентов:
+
+
+ 22 +
+ +
+
+
+
+ + +
+
+
+{% endblock %} \ No newline at end of file diff --git a/static/main/css/work.css b/static/main/css/work.css new file mode 100644 index 0000000..751eed4 --- /dev/null +++ b/static/main/css/work.css @@ -0,0 +1,121 @@ +/* .all { + display: flex; + justify-content: start; +} */ + +/* .menu { + position: absolute; + top: 0; + left: 0; + display: inline-flex; + width: 150px; + height: 100vh; + background: #45729C; +} */ + +.page-title { + margin: auto; + display: block; + text-align: center; +} + +.page-description { + display: block; + margin: auto; + font-size: 1rem; + text-align: center; +} + +.new-section { + margin-top: 50px; +} + +.table-title { + text-align: center; + margin: auto; + font-size: 1.2rem; + font-weight: bolder; +} + +.container { + width: calc(100% - 150px); + /* margin-left: calc(150px); + margin-right: calc((100vw - 150px) / 2); */ +} + +.light-table { + font-weight: bold; + margin: auto; + margin-top: 10px; + font-size: 1.2rem; + width: 100%; +} + +.light-table th { + background: #515A63; + color: white; + padding: 10px; +} + +.light-table td { + padding: 5px; + padding-left: 10px; +} + +.light-table tr:nth-child(odd) { + background: #93A2AF; +} + +.info-row { + margin: 5px auto; + height: 53px; +} + +.info-target { + width: 200px; + display: inline-block; + font-size: 1.2rem; +} + +.info-quantity { + max-width: 200px; + display: inline-block; +} + + +.light-green { + background: #83DC87; +} + +.light-yellow { + background: #F3EB3C; +} + +.info-quantity-value { + font-weight: bold; +} + + +.status-circle-small { + margin: auto; + display: inline-block; + border-radius: 4px; + width: 8px; + height: 8px; +} + +.request-acess-button, +.hand-over-acess-button { + font-size: 1.2rem; + width: 100%; +} + +.default-button { + border: none; + display: block; + margin: 5px auto; + text-align: center; + padding: 10px; + background: #3B91D4; + color: white; +} \ No newline at end of file