Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified db.sqlite3
Binary file not shown.
Binary file added todo/__pycache__/__init__.cpython-39.pyc
Binary file not shown.
Binary file added todo/__pycache__/admin.cpython-39.pyc
Binary file not shown.
Binary file added todo/__pycache__/apps.cpython-39.pyc
Binary file not shown.
Binary file added todo/__pycache__/forms.cpython-39.pyc
Binary file not shown.
Binary file added todo/__pycache__/models.cpython-39.pyc
Binary file not shown.
Binary file added todo/__pycache__/views.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added todo/migrations/__pycache__/__init__.cpython-39.pyc
Binary file not shown.
9 changes: 7 additions & 2 deletions todo/templates/todo/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,13 @@

<h1>Simply Your Todos. Woo!</h1>
<p>Life is fun. But life is also busy. There's a million different things you could be doing. But what matters is <u>what</u> you do. We created <b><i>Todo Woo</i></b> to help you make sense of all of your opportunities and live that life that matters most to you. Your new organized life awaits.</p>
<a role="button" class="btn btn-primary btn-lg" href="{% url 'signupuser' %}">Start</a>
</div>
{% if user.is_authenticated %}
<a role="button" class="btn btn-primary btn-lg" href="{% url 'currenttodos' %}">Current List</a>
{% endif %}
{% if not user.is_authenticated %}
<a role="button" class="btn btn-primary btn-lg" href="{% url 'signupuser' %}">Start</a>
{% endif %}
</div>
</div>

{% endblock %}
Binary file added todowoo/__pycache__/__init__.cpython-39.pyc
Binary file not shown.
Binary file added todowoo/__pycache__/settings.cpython-39.pyc
Binary file not shown.
Binary file added todowoo/__pycache__/urls.cpython-39.pyc
Binary file not shown.
Binary file added todowoo/__pycache__/wsgi.cpython-39.pyc
Binary file not shown.