need help on multiple file uploads

2020-03-12 Thread Robb Rodirguez Jr.
im having to with multiple file uploads, when i tried to upload files only 1 file will be saved.. here's my code: views.py def attachments(request): to = TravelOrder.objects.order_by('-date_filling').last() if request.method == 'POST': form = AttachmentsForm(request.POST, request

Many to Many relationships in template

2020-02-27 Thread Robb Rodirguez Jr.
Good day guys, im new to django im having in many to many relationship display in template How can display this into a normal list.. from . , , , , ]> to. webadmin kim sem quinito user1 Here's my code model.py class ListOfUser(models.Model): users = models.ManyToManyField(User, verbos

null value in column “ProjectName_id” violates not-null constraint

2019-09-11 Thread Robb Rodirguez Jr.
Hello need help on null value in column "ProjectName_id" violates not-null constraint, im new to django i want my ProjectName_id (Foreignkey) is the same/equal id that user choose in my majordetails = ProjectNameInviToBid.objects.get(id=sid) please help me... my model views class ProjectNameIn