Metadata-Version: 2.4
Name: gbrown-django-todo
Version: 0.1
Summary: A Django app to track todo items.
Author-email: Gabriel Brown <gabriel.brown.h@gmail.com>
License-Expression: BSD-3-Clause
Project-URL: Homepage, https://www.example.com/
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 5.2
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=3.13
Description-Content-Type: text/x-rst
License-File: LICENSE
Requires-Dist: django>=5.2
Dynamic: license-file

============
django-todo
============

django-polls is a Django app to help users keep track of their TODO items.
Detailed documentation is in the "docs" directory.

Quick start
-----------

1. Add "todo" to your INSTALLED_APPS setting like this::

    INSTALLED_APPS = [
        ...,
        "django_todo",
    ]

2. Include the polls URLconf in your project urls.py like this::

    path("todos/", include("django_todo.urls")),

3. Run ``python manage.py migrate`` to create the models.

4. Start the development server and visit the admin to create a todo.

5. Visit the ``/todos/`` URL to create and view todos.
