from django.core.management.base import BaseCommand, CommandError
from django.conf import settings
import os.path, csv
from theme.models import *
class Command(BaseCommand):
def handle(self, *args, **options):
modelName= raw_input("Enter model name: ")
print "you entered", modelNameHi,
You got answered otherwise but note that model name itself isn't
unique. "appname.modelname" is unique pair.
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To post to this group, send email to django...@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/2d5a05da-27e1-40ba-9884-478aecb2efe5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
-- Jani Tiainen