I\'m trying to create a small app for users to have contacts. I\'m using django-profiles as a base for my profiles. Now everything works well until I try to submit the edit contact form and I receive
class Employee(Profile): designation = models.ForeignKey(Designation) keys = models.ManyToManyField(Key开发者_Python百科s)
In ,models i have 开发者_StackOverflow社区class pick: t1 =models.DateTimeField(auto_now_add=True)
Hey everyone, I have had some amazing help the past couple days in trying to solve my issue.I just have one last questions (I hope) :)
so im trying to update in my view a select widget as part of a form. i\'e seen tons of stuff on how to do it, i\'ve fol开发者_如何转开发lowed it and got nearly there.
I am trying to use Django\'s generic views to make a user registration page. I have the following code in my app\'s urls.py
I have a small issue.I am trying to pull some data from my XML using lxml and I keep getting a \"list index out of range\" error,now I am trying to get the [0] position of my list, which should be the
As it currently stands, this quest开发者_如何学运维ion is not a good fit for our Q&A format. We expect answers to be supported by facts, references,or expertise, but this question will likely
how to use not like in django queries开发者_JAVA技巧 Model.objects.filter(keywords not like \"null\" or \"undefined\")
I am trying to delete a client object in my program and then also delete the object in activeCollab using the API provided.I can delete the object but I keep getting a 404 error when it calls the API.