Which statement about Django's authentication versus authorisation is correct?
- A Authentication establishes identity; authorisation determines permitted actions
- B Authorisation establishes identity
- C They are the same process
- D Django only provides authentication
Answer
Authentication establishes identity; authorisation determines permitted actions
Django provides both, but its built-in permissions are model-level. Object-level rules such as only the author may edit must be implemented separately.





