Metadata-Version: 2.1
Name: django-webperformers-humans
Version: 0.2
Summary: A Django app to expose project team in seo-frienly way.
Home-page: https://www.webperformers.net/
Author: Your Name
Author-email: tadas@webperformers.net
License: UNKNOWN
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 4.0
Classifier: Framework :: Django :: 4.1
Classifier: Framework :: Django :: 4.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

Django humans
=====

Humans is a Django app:
    1. Exposing hunans.txt file
    2. Exposing project team over /team/ path
    3. Exposing each project team member over /team/member-name path

Model Humans is created to manage team members and their information

App uses templates:
    1. teamComponent.html - main component of displaying team members
    2. teamPage.html - page, including teamComponent.html component, and extending base template. Base template should have humansContent block.
    3. personPage.html - page, displayng each tem member individually, and extending base template. Base template should have humansContent block.


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

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

    INSTALLED_APPS = [
        ...,
        "humans",
    ]

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

    path('', include('humans.urls')),

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

