Skip to main content

All Questions

Filter by
Sorted by
Tagged with
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 ...
Rafsan Jahin's user avatar
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 ...
NISHANT Pacharne's user avatar
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 ...
James Binding's user avatar
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 ...
arr-aei's user avatar
  • 11
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 ...
BillB1951's user avatar
  • 225
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 '...
cclerv's user avatar
  • 2,969
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 ...
ApPeL's user avatar
  • 4,911
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 ...
Monika Sulik's user avatar
  • 17.3k