diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-09-18 11:18:11 +0200 | 
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-10-24 12:06:08 +0200 | 
| commit | e4886af839af1194d0153c99234751d7cd4fde27 (patch) | |
| tree | d0bd953ebe547522206cb9a01ebe1b33dcaa89c4 /ishtar_common/models.py | |
| parent | 1ca13841328bf1aa661b0d6bbb69c4e84950d9df (diff) | |
| download | Ishtar-e4886af839af1194d0153c99234751d7cd4fde27.tar.bz2 Ishtar-e4886af839af1194d0153c99234751d7cd4fde27.zip  | |
Display pined search on search input
Diffstat (limited to 'ishtar_common/models.py')
| -rw-r--r-- | ishtar_common/models.py | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py index a097951e0..15d6a0ba9 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -1696,10 +1696,16 @@ class ShortMenuItem(object):      """      Item available in the short menu      """ +    UP_MODEL_QUERY = {} +      @classmethod      def get_short_menu_class(cls, pk):          return '' +    @property +    def short_class_name(self): +        return "" +  class QuickAction(object):      """  | 
