Skip to content

Commit 1a85167

Browse files
committed
site is live, updated broken mobile layout
1 parent de94b4e commit 1a85167

File tree

3 files changed

+27
-2
lines changed

3 files changed

+27
-2
lines changed

README.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,27 @@
11
# Python-Django
22
An application using Python to test out the Django framework.
3+
4+
## Login and Sign up
5+
To access the application, sign up by creating an account, afterwards you'll be able to log in
6+
7+
## Tasks/Todos
8+
Tasks and todos are the same concept. You can create a task which is set without any due date, importance or completion mark.
9+
10+
### Due date
11+
A due date can be set for a task which will appear underneath the task's text. A due date cannot be set in the past. If a due date is past due, it will turn red. A due date can be updated at any time.
12+
13+
### Importance
14+
A task can be marked as important, the star icon will appear solid when important and only an outline showing when it has non-importance.
15+
16+
### Completion
17+
When a task if marked as completed(by clicking the circle to the left of the task), a strikethough will go through the task's text, marking it as complete.
18+
19+
## Important tasks by default
20+
Tasks created under the 'Important tasks' view will be marked as important by default.
21+
22+
## Delete
23+
Tasks can be deleted from either the normal or 'important' dashboard.
24+
25+
## Accounts
26+
Accounts are created with Djangos built-in authentication with validation included. Accounts are case sensitive. Currently they only serve the purpose as to access your stored tasks, no other customization has been added yet.
27+

users/templates/users/forms/register_form.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div class="col-lg-6 mx-auto h-100">
1+
<div class="col-lg-6 mx-auto h-100 pb-4">
22
<form method="POST" class="d-flex flex-column text-white pb-3">
33
{{ userCreationForm }}
44
{% csrf_token %}

users/templates/users_base.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
{% include "index/partials/navbar.html" %}
88
<div class="container-fluid users-background text-center d-flex flex-column justify-content-center pb-4 vh-100">
99
<div class="row">
10-
<div class="col d-flex flex-column justify-content-center">
10+
<div class="col d-flex flex-column">
1111
{% include "index/welcome.html" %}
1212
{% block users %}
1313
{% endblock %}

0 commit comments

Comments
 (0)