Tagged Questions

1
vote
1answer
50 views

How the datas are connected to the specific user ID?

I'm new to Django and python. I've done login forms but I need to know. How can I connect the contents of the page with the user. For example: It's a Q&A site. When you logged in, It shows ...
1
vote
3answers
486 views

Creating Title / Slug based on PK ID

What would be the generic way to create record title and slub based on the ID? I am working with django-photologue here. I want to save a record with title and slug based on the PK. The generic ...
0
votes
1answer
317 views

Django - permissions and profiles

I have a couple of different profiles. I want to associate permissions with these profiles. I've done so like this: class StudentProfile(UserProfile): school = models.CharField(max_length=30) ...