All Questions
Tagged with django-apps django-forms
8 questions
0
votes
1
answer
149
views
post method is not working in single page django website
I'm learning Django from youtube. now I'm practicing on a project but the problem is the youtube tutorial used multi page django website while i'm developing a single page website where if you click a ...
0
votes
1
answer
147
views
Made a app and want to access its models in other apps and want to restrict user registration for accessing website
I am working on a django project , I am a beginner and thought that i should make a new app for user management so made it but now want to access the models of that app from other apps and also want ...
0
votes
1
answer
257
views
How do you link 2 apps within django?
Basically I have built the basics of a website.
I am now wanting to implement a blog on the website as another app.
How do I go about linking the URLs, views, models within these apps?
Also, with the ...
1
vote
0
answers
41
views
What does Django DEBUG do under the hood?
I have a bug that does not occur when DEBUG is True, whether in production on Apache or locally on the Django dev server. This leads me to ask: What is all the magic that Django DEBUG does behind the ...
1
vote
3
answers
6k
views
Django Error: 'function' object has no attribute 'save'
Can someone please tell me what i am doing wrong?
Model.py
class Cattest(models.Model):
category = models.ForeignKey(Category)
info = models.CharField(max_length=35, blank=True)
form.py
...
1
vote
1
answer
193
views
django-mptt-comments app error
I am trying to use django-mptt-comments app on my django project however I'm running into problems when I try posting a comment.
I get the error : AttributeError: 'NoneType' object has no attribute '...
0
votes
1
answer
276
views
Django friendship in messages compose
I am using django-friends and django-messages.
I have modified my custom compose form to pull the following information, myfriends and also display their fullnames instead of just usernames.
One ...
10
votes
1
answer
2k
views
Jquery in Django: Which django apps should I look into?
I want to use some jquery in my forms and I was hoping to use some ready made solutions - there seem to be a lot of them...
Which django apps would you recommend for this purpose? Which are most ...