Metadata-Version: 2.1
Name: django-webperformers-humans
Version: 0.3.7
Summary: A Django app to expose project team in seo-friendly way.
Home-page: https://www.pikutis.lt/
Author: Tadas Pikutis
Author-email: tadas@pikutis.lt
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
=====

Warning - templates are built using TailwindCSS - you need to build a styles for them manually

Humans is a Django app:
1. Exposing humans.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, displaying each tem member individually, and extending base template. Base template should have humansContent block.

To override them, just create same files in your templates dir humans folder

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.

4. Add ``{% block humansContent %}{% endblock %}`` to your base template to include pages in



