Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
django-short-text-field
Advanced tools
A Django app which adds a ShortTextField model field, whichis like a TextField in the database but uses the TextInputrather than the Textarea widget in forms.
A very simple Django app that adds a ShortTextField
model field class, which
is treated like a TextField
in the database (i.e. the data is stored in the
database with the text
rather than the varchar
type, and the developer does
not need to specify a max_length
), but uses the TextInput
widget (a single-
line <input type="text>
) by default rather than Textarea
. This is ideal for
PostgreSQL, which recommends the 'text' type in a wider variety of
circumstances than other commonly-used database backends (see the
PostgreSQL docs).
This package is available from
PyPI, so you can install
it using pip
like this:
pip install django-short-text-field
Add 'short_text_field'
to your INSTALLED_APPS
setting like this:
INSTALLED_APPS = [
...
'short_text_field',
]
Add a ShortTextField
to a model like this:
from short_text_field.models import ShortTextField
...
class ExampleModel(models.Model):
...
example_field = ShortTextField
A model with a ShortTextField
should be registered in the admin site using
short_text_field.admin.ModelAdmin
.
admin.site.register(ExampleModel, short_text_field.admin.ModelAdmin)
A subclass of this class will also work:
class ExampleModelAdmin(short_text_field.admin.ModelAdmin):
model = ExampleModel
...
admin.site.register(ExampleModel, ExampleModelAdmin)
If you have a hierarchy of ModelAdmin
subclasses, you can still
incorporate short_text_field.admin.ModelAdmin
easily as a mixin:
class ExampleModelAdmin2(short_text_field.admin.ModelAdmin, ExampleModelAdmin1):
model = ExampleModel
...
admin.site.register(ExampleModel, ExampleModelAdmin)
You can also use a subclass of short_text_field.admin.AdminSite
for the
site, which will make short_text_field.admin.ModelAdmin
the default
ModelAdmin
subclass to use for registering. In the simplest case, you can
just set the default_site
attribute of the AdminConfig
class and then
register all of your models in the normal way:
from django.contrib.admin import apps
import short_text_field.admin.AdminSite
...
class ExampleAdminConfig(apps.AdminConfig):
...
default_site = short_text_field.admin.AdminSite
FAQs
A Django app which adds a ShortTextField model field, whichis like a TextField in the database but uses the TextInputrather than the Textarea widget in forms.
We found that django-short-text-field 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.