A search and replace app for django
Project description
django-search-and-replace
A simple app that allows searching and replacing values in a specified set of models.
Getting started
Add search_and_replace
to your INSTALLED_APPS
and add a url for the search and replace view.
from django.urls import path
from search_and_replace.views import SearchAndReplaceView
from example.models import Cat, Dog
urlpatterns += [
path(
"admin/search_and_replace/",
SearchAndReplaceView.as_view(
models_and_fields=[(Cat, ("name", "bio")), (Dog, ("name", "bark"))]
),
name="search-and-replace",
)
]
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
Close
Hashes for django-search-and-replace-0.0.5.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | fb0a09ae2d6719e2b8daf6f6902a060786115952cfb08e79123c83a229f43cb6 |
|
MD5 | 0f7afcfeb07b59880bac84588e1344bf |
|
BLAKE2b-256 | c840a1b2b1056f0e8e378dc07e15a1db61fe0e58ddc5b6386649e14f2cc68ce3 |