Changes between Initial Version and Version 1 of Ticket #25467, comment 2


Ignore:
Timestamp:
Sep 28, 2015, 5:39:42 PM (9 years ago)
Author:
Stavros Korokithakis

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #25467, comment 2

    initial v1  
    22
    33{{{
    4 (user if user else User()).get_thing()
     4(user if user else User()).get_thing("foo")
     5}}}
     6
     7where get_thing does:
     8
     9{{{
     10def get_thing(self, name):
     11    Things.filter(name=name).exclude(user=self)
    512}}}
    613
Back to Top