ptig manage_[your_prj_name] shell
Możesz np wykonać jakąś zmianę bezpośrednio w bazie danych:
from django.db.models import Value
from django.db.models.functions import Replace
from schbuilder.models import SChTemplate
object_list = SChTemplate.objects.filter(template_code__icontains = "%load")
object_list.update(template_code=Replace('template_code', Value('%load'), Value('% load')))