Changes between Initial Version and Version 1 of Ticket #25202


Ignore:
Timestamp:
Jul 31, 2015, 3:05:45 AM (9 years ago)
Author:
Baptiste Mispelon
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #25202

    • Property Easy pickings set
    • Property Triage Stage UnreviewedAccepted
  • Ticket #25202 – Description

    initial v1  
    1 https://docs.djangoproject.com/en/dev/topics/auth/customizing/#referencing-the-user-model\
     1https://docs.djangoproject.com/en/dev/topics/auth/customizing/#referencing-the-user-model
    22
    33Referencing the User model. The example is missing a parenthesis.
    4 
     4{{{#!python
    55from django.conf import settings
    66from django.db import models
     
    1111        on_delete=models.CASCADE,
    1212    )
    13 
    14 '''Corrected:
    15 '''from django.conf import settings
     13}}}
     14Corrected:
     15{{{#!python
     16from django.conf import settings
    1617from django.db import models
    1718
     
    2122        on_delete=models.CASCADE,
    2223    )
    23 
     24}}}
Back to Top