From 9454d8de468a316ee9c689af79b924e3cb7159e9 Mon Sep 17 00:00:00 2001 From: alazo Date: Sun, 29 Jul 2018 11:40:40 +0200 Subject: [PATCH] Intranet app --- .gitignore | 2 +- .idea/eds.iml | 12 + .idea/misc.xml | 7 + .idea/modules.xml | 8 + .idea/vcs.xml | 6 + .idea/workspace.xml | 644 ++++++++++++++++++++++++++++++ intranet/__init__.py | 0 intranet/admin.py | 32 ++ intranet/apps.py | 5 + intranet/migrations/__init__.py | 0 intranet/models.py | 36 ++ intranet/tests.py | 3 + templates/registration/login.html | 66 +++ 13 files changed, 820 insertions(+), 1 deletion(-) create mode 100644 .idea/eds.iml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 .idea/workspace.xml create mode 100644 intranet/__init__.py create mode 100644 intranet/admin.py create mode 100644 intranet/apps.py create mode 100644 intranet/migrations/__init__.py create mode 100644 intranet/models.py create mode 100644 intranet/tests.py create mode 100644 templates/registration/login.html diff --git a/.gitignore b/.gitignore index 9a7f560..e5ee446 100644 --- a/.gitignore +++ b/.gitignore @@ -7,4 +7,4 @@ db.eds db.* *.sql scripts/* - +.idea/* diff --git a/.idea/eds.iml b/.idea/eds.iml new file mode 100644 index 0000000..4682891 --- /dev/null +++ b/.idea/eds.iml @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..6538501 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..ca01fa5 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..298819b --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,644 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {% url 'admin_password_reset' as password_reset_url %} + {% if password_reset_url %} + + {% endif %} +
+ +
+ + + +{% endblock %}