
Research
/Security News
Toptal’s GitHub Organization Hijacked: 10 Malicious Packages Published
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
django-clearable-widget
Advanced tools
.. image:: https://img.shields.io/pypi/v/django-clearable-widget.svg :target: https://pypi.python.org/pypi/django-clearable-widget/
.. image:: https://img.shields.io/pypi/dm/django-clearable-widget.svg :target: https://pypi.python.org/pypi/django-clearable-widget/
.. image:: https://img.shields.io/github/license/bashu/django-clearable-widget.svg :target: https://pypi.python.org/pypi/django-clearable-widget/
.. image:: https://img.shields.io/travis/bashu/django-clearable-widget.svg :target: https://travis-ci.com/github/bashu/django-clearable-widget/
django-clearable-widget is a custom widget that adds a input clearing button on any input fields that are using it. It clears the value, and returns focus to that field.
.. image:: https://raw.githubusercontent.com/bashu/django-clearable-widget/develop/showcase.gif :target: https://raw.githubusercontent.com/bashu/django-clearable-widget/develop/showcase.gif :align: center :width: 600px
.. code-block:: bash
pip install django-clearable-widget
External dependencies
* jQuery - this is not included in the package since it is expected
that in most scenarios this would already be available.
Setup
-----
Add ``clearable_widget`` to ``INSTALLED_APPS``:
.. code-block:: python
INSTALLED_APPS += (
'clearable_widget',
)
and just include ``clearable_widget`` templates
.. code-block:: html+django
{% include "clearable_widget/clearable_widget_css.html" %} {# Before the closing head tag #}
{% include "clearable_widget/clearable_widget_js.html" %} {# Before the closing body tag #}
When deploying on production server, don't forget to run:
.. code-block:: shell
python manage.py collectstatic
Usage
-----
All you need now is to import ``ClearableInput`` class and override
field's widget, for example:
.. code-block:: python
from clearable_widget import ClearableInput
class Form(forms.Form):
field = forms.CharField(widget=ClearableInput)
Please see ``example`` application. This application is used to
manually test the functionalities of this package. This also serves as
a good example.
You need only Django 1.4 or above to run that. It might run on older
versions but that is not tested.
License
-------
``django-clearable-widget`` is released under the BSD license.
Changes
-------
1.0.0 (2021-11-30)
~~~~~~~~~~~~~~~~~~
* Added Django 3+ support.
* Dropped Python 2.7 support.
* Dropped Django 1.10 / 1.11 support.
FAQs
Custom widget to add a (x) clear button to your input fields
We found that django-clearable-widget demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
Research
/Security News
Socket researchers investigate 4 malicious npm and PyPI packages with 56,000+ downloads that install surveillance malware.
Security News
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.