Opened 15 years ago

Closed 15 years ago

#10925 closed (fixed)

Django tutorial part 2: was_published_today example

Reported by: rm Owned by: nobody
Component: Documentation Version: 1.0
Severity: Keywords: tutorial
Cc: Triage Stage: Ready for checkin
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

The following code adding the short_description resides in models.py, which could be mentioned in the text above. Earlier code snippets were from admin.py, which led me to try editing the wrong module. Please clarify the text on the code location, otherwise the tutorial is just great!

BR,

Risto

def was_published_today(self):
    return self.pub_date.date() == datetime.date.today()
was_published_today.short_description = 'Published today?'

Attachments (1)

10925.diff (641 bytes ) - added by Tim Graham 15 years ago.
note that the method is in models.py

Download all attachments as: .zip

Change History (3)

by Tim Graham, 15 years ago

Attachment: 10925.diff added

note that the method is in models.py

comment:1 by Tim Graham, 15 years ago

Triage Stage: UnreviewedReady for checkin

comment:2 by Karen Tracey, 15 years ago

Resolution: fixed
Status: newclosed

(In [10808]) Fixed #10925 -- Clarified the location of some code referenced in the tutorial. Thanks rm and timo.

Note: See TracTickets for help on using tickets.
Back to Top