Advertisement
Guest User

Untitled

a guest
Dec 4th, 2010
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.31 KB | None | 0 0
  1. # models.py
  2.  
  3. def get_absolute_urk(self):
  4.     return "/weblog/%s/%s/" % (self.pub_date.strftime("%Y/%b/%d").lower(), self.slug)
  5.  
  6. # entries_index.html
  7.  
  8. <p><a href="{{get_absolute_url}}"> {{get_absolute_url}} </a></p>
  9. <hr/>
  10.  
  11. # manage.py shell
  12.  
  13. AttributeError: 'Entry' object has no attribute 'get_absolute_url'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement