Mitchel Cabuloy
Mitchel Cabuloy
Maintaining a `yaml` file of components is a little annoying. There should be a built-in way to auto-discover components. I have a few ideas but if you have suggestions, please...
Slippers should not crash if the contents of `components.yaml` isn't in the expected format. It should show a helpful error message instead.
Exceptions are raised if `settings.DEBUG` is True. This is OK, but to be more inline with Django's recommendations, we should check the value of `debug` in the template engine's settings...
Hey there! Great job on this library. I can't believe I haven't seen this before, this is awesome! The only downside for me is, I use splinter. I'll happily work...
[Poetry](https://poetry.eustace.io/) is a python package manager, similar to Pipenv. At the moment, heroku-buildpack-python supports both vanilla pip (via requirements.txt) and Pipenv (via Pipfile, Pipfile.lock). Unfortunately, there's been a lot of...
At the moment, the library only supports reCAPTCHA v2 and v3. It would be great if this library also supported reCAPTCHA Enterprise.
It may be useful to render components from views. I came across this while trying to use slippers components with HTMX.
I'm considering passing the `request` object from the parent context to the component transparently if it's available. My reasoning is that a bunch of existing template tags require the `request`...
This issue proposes changing the suggested name format of components to TitleCase from snake_case to improve readability by being distinct from normal template tags, keyword arguments, and variables. ```django {%...