Kumi
42e9de6942
This update brings several enhancements to the user interface and extends the forms functionality across the application. Specifically, the changes include the introduction of `django-crispy-forms` and `crispy-bootstrap5` to improve form aesthetics and usability significantly. Additionally, the admin area now features enhanced link color for better visibility, and user interface improvements have been made across various templates, like adding direct edit and delete category links and more intuitive navigation options for better user experience. Moreover, the inclusion of new forms for Scene, Category, and Original Media creation aligns with the app's need for structured data entry and complements the existing models by ensuring a more user-friendly interaction with the database. Key changes include: - Introduction of `django-crispy-forms` and `crispy-bootstrap5` for better form rendering. - UI enhancements for clarity and ease of use in the admin area and templates. - New forms for Scene, Category, and Original Media to streamline content creation processes. These changes aim to improve both the appearance and functionality of the application, making it more appealing and accessible to users while facilitating easier content management.
50 lines
1.1 KiB
TOML
50 lines
1.1 KiB
TOML
[tool.poetry]
|
|
name = "quackscape"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Private.coffee Team <support@private.coffee>"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
homepage = "https://quackscape.io"
|
|
repository = "https://git.private.coffee/PrivateCoffee/quackscape"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8"
|
|
django = "*"
|
|
djangorestframework = "*"
|
|
django-storages = "*"
|
|
django-polymorphic = "*"
|
|
setuptools = "*"
|
|
pillow = "*"
|
|
pygments = "*"
|
|
markdown = "*"
|
|
coreapi = "*"
|
|
pyyaml = "*"
|
|
django-autosecretkey = "*"
|
|
celery = "*"
|
|
redis = "*"
|
|
django-celery-results = "*"
|
|
django-celery-beat = "*"
|
|
drf-spectacular = {extras = ["sidecar"], version = "*"}
|
|
boto3 = "*"
|
|
argon2-cffi = "*"
|
|
django-csp = "*"
|
|
django-rest-polymorphic = "*"
|
|
django-crispy-forms = "*"
|
|
crispy-bootstrap5 = "*"
|
|
|
|
[tool.poetry.group.mysql.dependencies]
|
|
mysqlclient = "*"
|
|
|
|
[tool.poetry.group.postgres.dependencies]
|
|
psycopg2 = "*"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pytest = "^5.2"
|
|
|
|
[tool.poetry.scripts]
|
|
quackscape-manage = "quackscape.manage:main"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|