falco-cli 0.2.1__tar.gz → 0.2.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {falco_cli-0.2.1 → falco_cli-0.2.2}/.pre-commit-config.yaml +1 -1
- {falco_cli-0.2.1 → falco_cli-0.2.2}/PKG-INFO +1 -1
- {falco_cli-0.2.1/demo/demo → falco_cli-0.2.2/demo/config}/settings.py +5 -5
- {falco_cli-0.2.1/demo/demo → falco_cli-0.2.2/demo/config}/urls.py +2 -2
- {falco_cli-0.2.1 → falco_cli-0.2.2/demo}/demo/core/apps.py +1 -1
- {falco_cli-0.2.1 → falco_cli-0.2.2/demo}/demo/orders/apps.py +1 -1
- {falco_cli-0.2.1 → falco_cli-0.2.2/demo}/demo/products/apps.py +1 -1
- {falco_cli-0.2.1 → falco_cli-0.2.2}/demo/manage.py +1 -1
- {falco_cli-0.2.1 → falco_cli-0.2.2}/scripts/make_blueprints_from_demo.py +3 -3
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco/__about__.py +1 -1
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/crud/detail.html +1 -1
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/crud/update.html +1 -1
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/project_name/project_name/templates/base.html +3 -1
- falco_cli-0.2.2/tests/__init__.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/.all-contributorsrc +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/.github/dependabot.yml +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/.github/workflows/ci.yml +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/.github/workflows/documentation.yml +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/.github/workflows/pre-commit-auto-update.yml +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/.gitignore +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/.vscode/settings.json +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/CODE_OF_CONDUCT.md +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/LICENSE +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/README.md +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/all-contributorsrc +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/assets/falco-logo.svg +0 -0
- {falco_cli-0.2.1/demo/core → falco_cli-0.2.2/demo/config}/__init__.py +0 -0
- {falco_cli-0.2.1/demo/demo → falco_cli-0.2.2/demo/config}/asgi.py +0 -0
- {falco_cli-0.2.1/demo/demo → falco_cli-0.2.2/demo/config}/wsgi.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/demo/demo/__init__.py +0 -0
- {falco_cli-0.2.1/demo/orders → falco_cli-0.2.2/demo/demo/core}/__init__.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2/demo}/demo/core/utils.py +0 -0
- {falco_cli-0.2.1/demo/orders/migrations → falco_cli-0.2.2/demo/demo/orders}/__init__.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2/demo}/demo/orders/admin.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2/demo}/demo/orders/migrations/0001_initial.py +0 -0
- {falco_cli-0.2.1/demo/products → falco_cli-0.2.2/demo/demo/orders/migrations}/__init__.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2/demo}/demo/orders/models.py +0 -0
- {falco_cli-0.2.1/demo/products/migrations → falco_cli-0.2.2/demo/demo/products}/__init__.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2/demo}/demo/products/admin.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2/demo}/demo/products/forms.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2/demo}/demo/products/migrations/0001_initial.py +0 -0
- {falco_cli-0.2.1/src/falco_blueprints/project_name/config → falco_cli-0.2.2/demo/demo/products/migrations}/__init__.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2/demo}/demo/products/models.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2/demo}/demo/products/tests.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2/demo}/demo/products/urls.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2/demo}/demo/products/views.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/demo/requirements.txt +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/demo/templates/base.html +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/demo/templates/products/product_create.html +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/demo/templates/products/product_detail.html +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/demo/templates/products/product_list.html +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/demo/templates/products/product_update.html +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/docs/.rich-codex.yml +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/docs/Makefile +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/docs/_templates/partials/globaltoc-above.html +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/docs/codeofconduct.rst +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/docs/conf.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/docs/contributing.rst +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/docs/guides/avoiding_god_models.rst +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/docs/guides/database_tips.rst +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/docs/guides/deployment.rst +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/docs/guides/dynamic_model_schema.rst +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/docs/guides/index.rst +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/docs/guides/interactive_user_interfaces.rst +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/docs/guides/logging_and_monitoring.rst +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/docs/guides/multitenancy.rst +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/docs/guides/optimizing_database_access.rst +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/docs/guides/permissions_and_authorization.rst +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/docs/guides/realtime.rst +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/docs/guides/running_project_in_a_container.rst +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/docs/guides/task_queues_and_schedulers.rst +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/docs/guides/tips_and_extra.rst +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/docs/guides/use_sqlite_in_production.rst +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/docs/guides/writing_async_code.rst +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/docs/guides/writing_documentation.rst +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/docs/guides/writing_tests.rst +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/docs/images/logo_with_text.svg +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/docs/images/project-tree.svg +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/docs/index.rst +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/docs/install.rst +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/docs/license.rst +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/docs/make.bat +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/docs/the_cli/crud.rst +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/docs/the_cli/htmx.rst +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/docs/the_cli/index.rst +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/docs/the_cli/make_superuser.rst +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/docs/the_cli/migrations.rst +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/docs/the_cli/start_project.rst +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/docs/the_cli/sync_dotenv.rst +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/docs/the_cli/work.rst +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/pyproject.toml +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/scripts/update_readme_guides.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco/__init__.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco/__main__.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco/commands/__init__.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco/commands/htmx.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco/commands/htmx_extension.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco/commands/install_crud_utils.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco/commands/make_superuser.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco/commands/model_crud.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco/commands/reset_migrations.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco/commands/rm_migrations.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco/commands/start_project.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco/commands/sync_dotenv.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco/commands/work.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco/utils.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/crud/create.html +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/crud/forms.py.bp +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/crud/list.html +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/crud/utils.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/crud/views.py.bp +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/project_name/.env.template +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/project_name/.github/dependabot.yml +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/project_name/.github/workflows/ci.yml +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/project_name/.gitignore +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/project_name/.pre-commit-config.yaml +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/project_name/README.md +0 -0
- {falco_cli-0.2.1/src/falco_blueprints/project_name/project_name → falco_cli-0.2.2/src/falco_blueprints/project_name/config}/__init__.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/project_name/config/asgi.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/project_name/config/settings.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/project_name/config/urls.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/project_name/config/wsgi.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/project_name/deploy/Dockerfile +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/project_name/deploy/entrypoint.sh +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/project_name/deploy/gunicorn.conf.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/project_name/manage.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/project_name/playground.ipynb +0 -0
- {falco_cli-0.2.1/src/falco_blueprints/project_name/project_name/core → falco_cli-0.2.2/src/falco_blueprints/project_name/project_name}/__init__.py +0 -0
- {falco_cli-0.2.1/src/falco_blueprints/project_name/project_name/users → falco_cli-0.2.2/src/falco_blueprints/project_name/project_name/core}/__init__.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/project_name/project_name/core/apps.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/project_name/project_name/static/vendors/htmx/htmx.min.js +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/project_name/project_name/templates/home.html +0 -0
- {falco_cli-0.2.1/src/falco_blueprints/project_name/project_name/users/migrations → falco_cli-0.2.2/src/falco_blueprints/project_name/project_name/users}/__init__.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/project_name/project_name/users/admin.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/project_name/project_name/users/apps.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/project_name/project_name/users/forms.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/project_name/project_name/users/migrations/0001_initial.py +0 -0
- {falco_cli-0.2.1/src/falco_blueprints/project_name/tests → falco_cli-0.2.2/src/falco_blueprints/project_name/project_name/users/migrations}/__init__.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/project_name/project_name/users/models.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/project_name/pyproject.toml +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2/src/falco_blueprints/project_name}/tests/__init__.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/project_name/tests/test_assert_true.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/tests/commands/test_crud.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/tests/commands/test_htmx.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/tests/commands/test_htmx_extension.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/tests/commands/test_install_crud_utils.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/tests/commands/test_make_superuser.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/tests/commands/test_reset_migrations.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/tests/commands/test_rm_migrations.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/tests/commands/test_start_project.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/tests/commands/test_sync_dotenv.py +0 -0
- {falco_cli-0.2.1 → falco_cli-0.2.2}/tests/conftest.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: falco-cli
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: Enhance your Django developer experience: CLI and Guides for the Modern Developer.
|
|
5
5
|
Project-URL: Homepage, https://falco.oluwatobi.dev/
|
|
6
6
|
Project-URL: Documentation, https://falco.oluwatobi.dev/
|
|
@@ -36,13 +36,13 @@ INSTALLED_APPS = [
|
|
|
36
36
|
"django.contrib.sessions",
|
|
37
37
|
"django.contrib.messages",
|
|
38
38
|
"django.contrib.staticfiles",
|
|
39
|
-
"core",
|
|
40
|
-
"products",
|
|
41
|
-
"orders",
|
|
42
39
|
"crispy_forms",
|
|
43
40
|
"crispy_tailwind",
|
|
44
41
|
"template_partials",
|
|
45
42
|
"django_htmx",
|
|
43
|
+
"demo.core",
|
|
44
|
+
"demo.products",
|
|
45
|
+
"demo.orders",
|
|
46
46
|
]
|
|
47
47
|
|
|
48
48
|
MIDDLEWARE = [
|
|
@@ -56,7 +56,7 @@ MIDDLEWARE = [
|
|
|
56
56
|
"django_htmx.middleware.HtmxMiddleware",
|
|
57
57
|
]
|
|
58
58
|
|
|
59
|
-
ROOT_URLCONF = "
|
|
59
|
+
ROOT_URLCONF = "config.urls"
|
|
60
60
|
|
|
61
61
|
TEMPLATES = [
|
|
62
62
|
{
|
|
@@ -74,7 +74,7 @@ TEMPLATES = [
|
|
|
74
74
|
},
|
|
75
75
|
]
|
|
76
76
|
|
|
77
|
-
WSGI_APPLICATION = "
|
|
77
|
+
WSGI_APPLICATION = "config.wsgi.application"
|
|
78
78
|
|
|
79
79
|
|
|
80
80
|
# Database
|
|
@@ -7,6 +7,6 @@ from django.views.generic.base import RedirectView
|
|
|
7
7
|
urlpatterns = [
|
|
8
8
|
path("admin/", admin.site.urls),
|
|
9
9
|
path("", RedirectView.as_view(url=reverse_lazy("products:product_list"))),
|
|
10
|
-
path("products/", include("products.urls", namespace="products")),
|
|
11
|
-
# path("orders/", include("orders.urls", namespace="orders")),
|
|
10
|
+
path("products/", include("demo.products.urls", namespace="products")),
|
|
11
|
+
# path("orders/", include("demo.orders.urls", namespace="orders")),
|
|
12
12
|
]
|
|
@@ -6,7 +6,7 @@ import sys
|
|
|
6
6
|
|
|
7
7
|
def main():
|
|
8
8
|
"""Run administrative tasks."""
|
|
9
|
-
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "
|
|
9
|
+
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "config.settings")
|
|
10
10
|
try:
|
|
11
11
|
from django.core.management import execute_from_command_line
|
|
12
12
|
except ImportError as exc:
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
from pathlib import Path
|
|
2
2
|
|
|
3
3
|
root_dir = Path(__file__).parent.parent
|
|
4
|
-
|
|
5
|
-
products_app_dir =
|
|
4
|
+
demo_apps_dir = root_dir / "demo/demo"
|
|
5
|
+
products_app_dir = demo_apps_dir / "products"
|
|
6
6
|
falco_crud_blueprints_dir = root_dir / "src" / "falco_blueprints" / "crud"
|
|
7
7
|
|
|
8
8
|
python_blueprints = ("views.py", "forms.py")
|
|
@@ -32,7 +32,7 @@ def copy_python_files():
|
|
|
32
32
|
# copy crud utils file
|
|
33
33
|
utils_file = falco_crud_blueprints_dir / "utils.py"
|
|
34
34
|
utils_file.touch(exist_ok=True)
|
|
35
|
-
utils_file.write_text((
|
|
35
|
+
utils_file.write_text((demo_apps_dir / "core/utils.py").read_text())
|
|
36
36
|
|
|
37
37
|
|
|
38
38
|
def copy_html_files():
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
<section class="flex justify-between">
|
|
7
7
|
{% endverbatim %}
|
|
8
|
-
<h1 class="text-lg font-bold">{{ model_name}} - {
|
|
8
|
+
<h1 class="text-lg font-bold">{{ model_name}} - {{ "{"|add:"{" }} {{ model_name|lower }} {{ "}"|add:"}" }} </h1>
|
|
9
9
|
|
|
10
10
|
<a href="{{list_view_url|safe}}" class="text-blue-600 hover:underline hover:text-blue-500">
|
|
11
11
|
All {{model_verbose_name_plural|capfirst}}
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
<section class="flex justify-between">
|
|
8
8
|
{% endverbatim %}
|
|
9
|
-
<h1 class="text-lg font-bold py-4"> {{ model_name}} Update - {
|
|
9
|
+
<h1 class="text-lg font-bold py-4"> {{ model_name}} Update - {{ "{"|add:"{" }} {{ model_name|lower }} {{ "}"|add:"}" }}</h1>
|
|
10
10
|
|
|
11
11
|
<a href="{{list_view_url|safe}}" class="text-blue-600 hover:underline hover:text-blue-500">
|
|
12
12
|
All {{model_verbose_name_plural|capfirst}}
|
|
@@ -10,13 +10,15 @@
|
|
|
10
10
|
<meta name="description" content="">
|
|
11
11
|
<meta name="keywords" content="">
|
|
12
12
|
{% endverbatim %}<title>{{ project_name }}</title>{% verbatim %}
|
|
13
|
-
<script defer src="{% static "vendors/htmx/htmx.min.js" %}"></script>
|
|
14
13
|
{% tailwind_css %}
|
|
14
|
+
<script defer src="{% static "vendors/htmx/htmx.min.js" %}"></script>
|
|
15
15
|
{% django_htmx_script %}
|
|
16
|
+
{% block extra_head %}{% endblock extra_head %}
|
|
16
17
|
</head>
|
|
17
18
|
<body hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'>
|
|
18
19
|
{% block content %}
|
|
19
20
|
{% endblock content %}
|
|
21
|
+
{% block extra_body %}{% endblock extra_body %}
|
|
20
22
|
</body>
|
|
21
23
|
</html>
|
|
22
24
|
{% endverbatim %}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/project_name/.github/dependabot.yml
RENAMED
|
File without changes
|
{falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/project_name/.github/workflows/ci.yml
RENAMED
|
File without changes
|
|
File without changes
|
{falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/project_name/.pre-commit-config.yaml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/project_name/deploy/gunicorn.conf.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/project_name/project_name/core/apps.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/project_name/project_name/users/admin.py
RENAMED
|
File without changes
|
{falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/project_name/project_name/users/apps.py
RENAMED
|
File without changes
|
{falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/project_name/project_name/users/forms.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/project_name/project_name/users/models.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{falco_cli-0.2.1 → falco_cli-0.2.2}/src/falco_blueprints/project_name/tests/test_assert_true.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|