Changes between Initial Version and Version 1 of Ticket #25202
- Timestamp:
- Jul 31, 2015, 3:05:45 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #25202
- Property Easy pickings set
- Property Triage Stage Unreviewed → Accepted
-
Ticket #25202 – Description
initial v1 1 https://docs.djangoproject.com/en/dev/topics/auth/customizing/#referencing-the-user-model \1 https://docs.djangoproject.com/en/dev/topics/auth/customizing/#referencing-the-user-model 2 2 3 3 Referencing the User model. The example is missing a parenthesis. 4 4 {{{#!python 5 5 from django.conf import settings 6 6 from django.db import models … … 11 11 on_delete=models.CASCADE, 12 12 ) 13 14 '''Corrected: 15 '''from django.conf import settings 13 }}} 14 Corrected: 15 {{{#!python 16 from django.conf import settings 16 17 from django.db import models 17 18 … … 21 22 on_delete=models.CASCADE, 22 23 ) 23 24 }}}