Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have two Django applications inside one project:

  1. tickets
  2. solver

In solver app is model that extends Django User model. In tickets app is Ticket model.

I need to make connection: If Solver has %permission_name%, than he can do %action%. How can i reach this?

Pure Django, no plugins.

Also, in documentation is shown an example, but i don't get how it is working: when, where and how user perms are connected with concrete model?

user.has_perm('app.view_task')

Here it is connected only with app and user...

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.