Hi all,
after I readed the djangobook,I found if I wrote following code and I want to get some cool stuff.like auto generate the CRUD logic,I found that I have to use the Django Admin tool.I mean if I use Rails Or Grail,it can auto generate the code for me (both logic code and page code).but it seems that Django didn't provide these feature.I think if I want to some "user_define" feature ,and I don't use the Django Admin tool,that means I have to write some redundancy,for example every model with same CRUD method.and even if I extend the Django Admin template ,and I want to custom some behavious of page logic,it's tough.
Is there some better methods I can use under Django,like Rails or Grails?
Thanks
class Publisher(models.Model):
name=models.CharField(max_length=30)
address=models.CharField(max_length=50)
city=models.CharField(max_length=60)
state_province=models.CharField(max_length=30)
country=models.CharField(max_length=50)
website=models.URLField()
def __str__(self):
return
self.name
class Meta:
ordering=['name']
class Admin:
pass