Tobi
Tobi
Add a crud config for excluded_fields, by default generated project with the `modified` field excluded
- https://www.uxpin.com/studio/blog/table-ux/ - https://uxplanet.org/tables-that-arent-boring-a-guide-to-creating-visually-appealing-and-informative-data-tables-e20e885dd3cf - https://pencilandpaper.io/articles/ux-pattern-analysis-enterprise-data-tables/ the first columns should also serve as a link to details toolbars overs the table for seach add button, filtering center paginations numbers and...
https://django-storages.readthedocs.io/en/latest/backends/amazon-S3.html ```python # django-storages[s3] STORAGES = { "default": { "BACKEND": "storages.backends.s3.S3Storage", "OPTIONS": { "location": "media", "file_overwrite": False, }, }, } aws_s3_domain = AWS_S3_CUSTOM_DOMAIN or f"{AWS_STORAGE_BUCKET_NAME}.s3.amazonaws.com" MEDIA_URL = f"https://{aws_s3_domain}/media/" ```
https://github.com/jieter/django-tables2 Add via crud configuration an option to use django_tables2 ```toml [tool.falco.crud] use-django-tables2 = true ```
decent html templates with styling, override and improve django-allauth pages, similar to what cookiecutter django does - home page : similar to landing pages, very basic with project name, login,...
I want another version of the starter project, a more advanced version something similar to: - https://www.forgepackages.com/pro/ - https://www.saaspegasus.com/ - https://shipfa.st/ The idea is to ship and build faster, for...
I was thinkings of somethings similar to crud, that would generate `test_views.py`, `test_models.py`ansd `test_forms`files for a specific model
something I did for an old project ```python import json import uuid from dataclasses import asdict, dataclass from decimal import Decimal from django.core.cache import cache from django.core.exceptions import ObjectDoesNotExist #...