form doesn't appear – UnboundLocalError at / DJANGO FORM
Issue my form doesn’t appear at my website and its error now. this is my error message : UnboundLocalError at…
get it fixed!
Issue my form doesn’t appear at my website and its error now. this is my error message : UnboundLocalError at…
Issue Problem: I trying to path like this –> path(‘Image/<str>’, views.getImage, name=’imageCategory’), to get image filter by category –> http://127.0.0.1:8000/Image/TV…
Issue With the simplified models: class Notification(models.Model): content_type = models.ForeignKey(ContentType, null=True) object_id = models.PositiveIntegerField(null= True) content_object = generic.GenericForeignKey(‘content_type’, ‘object_id’) class…
Issue I need to allow administrators to manage permissions for models on my site. Groups, Users, and Permissions are doing…
Issue Django is sending the pre/post_delete signals if you are using the queryset.delete() method, but shouldn’t it then also send…
Issue this is my view.py @list_route(methods=[“post”]) def created_in_range(self, request): response = {} data = request.POST start = dateutil.parser.parse(data[‘start’]) end =…
Issue from django.db import models from datetime import datetime from django.contrib.auth import get_user_model User = get_user_model() class Blog(models.Model): user =…
Issue This may be a silly question. I start a new Django project as Document says, which only included an…
Issue I have figured out how to use bootstrap carousel but problem is I want to render my featured stories…
Issue I am saving github repo to server once user add their github repo, see this models. class Repo(models.Model): url…