flask-htmx icon indicating copy to clipboard operation
flask-htmx copied to clipboard

A Flask extension to work with HTMX.

Results 3 flask-htmx issues
Sort by recently updated
recently updated
newest added

For example: ```python from flask_htmx import HTMX htmx = HTMX(app) ``` Now in Flask's Jinja templates, a `htmx` variable is available. This is useful for such cases where conditionals are...

enhancement

A minimal working example is missing the `render_template` and also missing the `thing.html` file ``` from flask import Flask, render_template from flask_htmx import HTMX app = Flask(__name__) htmx = HTMX(app)...

documentation