I just started developing library management system using django. I\'m new to Django, so where do you suggest me to start? I used the tutorial on django\'s website but I think it\'s not enough for me
I have two models: models.py class model1 (models.Model): field1_model1 = models.CharField() filed2_model1 = models.CharField()
I just do not know how to create model for categories. I\'ve got some users which can post messages for one or many groups. There will be one category for each message, so visiters will be able to fil
I\'ve got such function in my MessageAdmin: def queryset(self, request): user_profile = UserProfile.objects.get(user = request.user.id)
I have a model called Personnel which I\'m using as the profile model for the User model. Here\'s my model
i wanted to create a topic model. this model would have a foreign key, non required, to 开发者_C百科the topic above it
I\'ve a Django application that uses a Product model and a Comment model. A User can add a Product to its favorite products list.
I want to add some choices between year 1950 to 2020. How can i do that? a = 1950 while a < 2020: b=a + 1
is there a way to set a max size for the images uploaded in my django app using easy-thumbnails app? In the settings list I don\'t see anything 开发者_运维百科about it.To cap file size, you might wan
I\'m using django as the edit interface for a database, and want to track the last edit. I\'ve got the following class