Skip to main content

A handy collection of reusable Django UI components, allowing me to share and integrate elements efficiently across various projects.

Project description

django-sample-components

PyPI

A reusable Django library that provides ready-to-use UI components — template tags, templates, and static assets — for use across Django projects.

Components are split into two groups:

  • Static ({% load sample_tags %}) — pure server-side rendered components, no JavaScript dependencies beyond Bootstrap.
  • Async ({% load async_tags %}) — interactive components powered by HTMX that update without page reloads.

Installation

pip install django-sample-components
# or
poetry add django-sample-components

Add to INSTALLED_APPS in settings.py:

INSTALLED_APPS = [
    # ...
    'django_sample_components',
    'django_htmx',   # required for async components
]

Add HtmxMiddleware to MIDDLEWARE (required for async components):

MIDDLEWARE = [
    # ...
    'django_htmx.middleware.HtmxMiddleware',
]

Include the library URLs in your project's urls.py:

from django.urls import include, path

urlpatterns = [
    path('components/', include('django_sample_components.urls')),
]

Collect static files:

python manage.py collectstatic

Static Components

Load with {% load sample_tags %} in any template. No HTMX or JavaScript required (except Bootstrap JS for simple_popup).

Tag Type Quick usage
greeting simple_tag {% greeting "Alice" %}
show_today_timestamp simple_tag {% show_today_timestamp %}
simple_typewriter simple_tag {% simple_typewriter words %}
simple_button simple_tag {% simple_button "Label" href="/url" btn_type="primary" %}
simple_toast simple_tag {% simple_toast position="bottom-end" autohide=True delay=6000 %}
shout block_tag {% shout %}...{% endshout %}
simple_alert block_tag {% simple_alert type="success" %}...{% endsimple_alert %}
simple_popup block_tag {% simple_popup name_button="Open" title="Title" %}...{% endsimple_popup %}

Quick example

{% load sample_tags %}

{% simple_alert type="success" %}
    Your changes have been saved.
{% endsimple_alert %}

{% simple_popup name_button="Open" title="Confirm" size="sm" %}
    <p>Are you sure?</p>
{% endsimple_popup %}

{% simple_button "Download" href="/files/report.pdf" icon_before="fa fa-download" %}

{# Toast container for Django messages + JS API (window.showToast) #}
{% simple_toast position="bottom-end" autohide=True delay=5000 %}

Async Components (HTMX)

Load with {% load async_tags %}. These components require HTMX and django-htmx. The easiest way to set them up is to extend master_async.html, which includes HTMX and handles CSRF automatically.

Tag Quick usage Doc
async_counter {% async_counter initial_value=0 step=1 %} docs
async_lazy_load {% async_lazy_load url="/async/lazy-load/" delay_ms=1200 %} docs
async_active_search {% async_active_search search_url="/search/" %} docs
async_lazy_popup {% async_lazy_popup name_button="Open" content_url="/content/" %} docs
async_sum_form {% async_sum_form %} docs
async_registration_form {% async_registration_form %} docs

Quick example

{% load async_tags %}

{# Counter with step 5, bounded 0–100 #}
{% async_counter initial_value=0 step=5 min_value=0 max_value=100 %}

{# Live search against your own endpoint #}
{% async_active_search search_url="/contacts/search/" placeholder="Search contacts..." %}

{# Modal that loads content only when opened #}
{% async_lazy_popup name_button="View Report" title="Monthly Report"
                    content_url="/reports/monthly/" size="lg" %}

{# Lazy load any endpoint on reveal #}
{% async_lazy_load url="/async/counter/component/?initial_value=10&step=2" delay_ms=2000 %}

{# Async forms #}
{% async_sum_form %}
{% async_registration_form %}

HTMX setup in your own base template

If you are not extending master_async.html, add the following to your base template:

{% load django_htmx %}

<head>
    {% htmx_script %}
    {% django_htmx_script %}
</head>
<body hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'>
    ...
</body>

Static vs Async — key differences

Static (sample_tags) Async (async_tags)
Rendered Server-side, with the page On demand via HTMX
JavaScript None (Bootstrap JS for popups) HTMX required
Page reload N/A Never
Dependencies Bootstrap CSS/JS Bootstrap CSS/JS + HTMX + django-htmx
Best for Simple UI elements Interactive, live, or heavy-content components

Building your own async form components

The library exposes base classes and utilities to help you build HTMX form endpoints that integrate with the toast system.

Base views (django_sample_components.views.component.base)

BaseFormComponentView — extends Django's FormView. Enforces the HX-Request header on POST, queues toast notifications automatically, and provides override hooks.

from django_sample_components.views.component.base import BaseFormComponentView

class MyFormView(BaseFormComponentView):
    template_name = "myapp/components/my_form.html"
    form_class = MyForm
    success_message = "Saved!"
    error_message = "Please fix the errors."

    def get_success_context(self, form):
        ctx = super().get_success_context(form)
        ctx["result"] = form.compute_result()
        return ctx

BaseCreateFormComponentView — extends BaseFormComponentView. Calls form.save() on success and adds the created instance as object in the success context. Suitable for ModelForm-based components.

from django_sample_components.views.component.base import BaseCreateFormComponentView

class MyModelFormView(BaseCreateFormComponentView):
    template_name = "myapp/components/my_model_form.html"
    form_class = MyModelForm
    success_message = "Record created!"

See docs/async/base_form_component_view.md for full reference.

Toast utilities (django_sample_components.utils)

Helper functions to build HX-Trigger payloads that fire toast notifications in the browser via showToast / showToasts events.

import json
from django_sample_components.utils import (
    get_json_show_toast,
    get_json_show_toasts,
    convert_django_messages_to_hx_triggers,
)

# Single toast
response["HX-Trigger"] = json.dumps(get_json_show_toast("Saved!", "success"))

# Multiple toasts at once
response["HX-Trigger"] = json.dumps(get_json_show_toasts([
    {"message": "Record saved.", "type": "success"},
    {"message": "Email notification sent.", "type": "info"},
]))

# Convert Django messages queue to HX-Trigger (used internally by BaseFormComponentView)
trigger = convert_django_messages_to_hx_triggers(request)
if trigger:
    response["HX-Trigger"] = json.dumps(trigger)

Valid toast types: success, error, danger, warning, info, primary, secondary.

See docs/utils.md for full reference.

Running locally

git clone https://github.com/GustavoRizzo/django-sample-components.git
cd django-sample-components
poetry install          # installs library + dev dependencies (includes demo extras)
poetry run task run-demo

Open http://127.0.0.1:8000 to browse the component showcase.

Note: The demo project uses django-simple-menu for its navigation. This is a dev-only dependency — it is not installed when consumers add django-sample-components to their projects via pip install or poetry add.

Tests

poetry run task test

Publishing

poetry version patch   # bump version (e.g. 0.1.0 → 0.1.1)
poetry build
poetry publish

Update the version in both pyproject.toml and django_sample_components/__init__.py before releasing.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_sample_components-0.1.10.tar.gz (28.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_sample_components-0.1.10-py3-none-any.whl (53.4 kB view details)

Uploaded Python 3

File details

Details for the file django_sample_components-0.1.10.tar.gz.

File metadata

  • Download URL: django_sample_components-0.1.10.tar.gz
  • Upload date:
  • Size: 28.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.2.1 CPython/3.14.0 Linux/6.6.87.2-microsoft-standard-WSL2

File hashes

Hashes for django_sample_components-0.1.10.tar.gz
Algorithm Hash digest
SHA256 976545279f65bcb894af05cddee74c25e6340af695b75908d93e36fc28671359
MD5 82afe256830338932bc917082e81c252
BLAKE2b-256 9ee0df8d422d2e9ea02193016c682ceb93e8a8d48034a56333a9ac14745cface

See more details on using hashes here.

File details

Details for the file django_sample_components-0.1.10-py3-none-any.whl.

File metadata

File hashes

Hashes for django_sample_components-0.1.10-py3-none-any.whl
Algorithm Hash digest
SHA256 d801fae26432a9c5dd08b8c53718d6dfcdcd8b871435dd5369117a461c142416
MD5 62e35e921bdd6d0baf5406cf022b2147
BLAKE2b-256 29c3f354e720ea9214a216f3cd54c850250ebe8b3cc9008b71a9a35964ec2f25

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page