Пример #1
0
 def get_types(self, obj):
     return [{
         'id':
         obj.id * 100 + i,
         'label':
         get_translation_or_dict('type{}_label'.format(i), self, obj),
         'values': [{
             'id':
             t.id,
             'label':
             get_translation_or_dict('label', self, t),
             'pictogram':
             t.pictogram.url if t.pictogram else None,
         } for t in obj.types.filter(in_list=i)]
     } for i in (1, 2)]
Пример #2
0
 def get_published(self, obj):
     return get_translation_or_dict('published', self, obj)
Пример #3
0
 def get_arrival(self, obj):
     return get_translation_or_dict('arrival', self, obj)
Пример #4
0
 def get_practical_info(self, obj):
     return get_translation_or_dict('practical_info', self, obj)
Пример #5
0
 def get_description(self, obj):
     return get_translation_or_dict('description', self, obj)
Пример #6
0
 def get_published(self, obj):
     return get_translation_or_dict('published', self, obj)
Пример #7
0
 def get_departure(self, obj):
     return get_translation_or_dict('departure', self, obj)
Пример #8
0
 def get_label(self, obj):
     return get_translation_or_dict('network', self, obj)
Пример #9
0
 def get_title(self, obj):
     return get_translation_or_dict('title', self, obj)
Пример #10
0
 def get_route(self, obj):
     return get_translation_or_dict('route', self, obj)
Пример #11
0
 def get_content(self, obj):
     return get_translation_or_dict('content', self, obj)
Пример #12
0
 def get_disabled_infrastructure(self, obj):
     return get_translation_or_dict('disabled_infrastructure', self,
                                    obj)
Пример #13
0
 def get_ambiance(self, obj):
     return get_translation_or_dict('ambiance', self, obj)
Пример #14
0
 def get_access(self, obj):
     return get_translation_or_dict('access', self, obj)
Пример #15
0
 def get_description(self, obj):
     return get_translation_or_dict('description', self, obj)
Пример #16
0
 def get_name(self, obj):
     return get_translation_or_dict('name', self, obj)
Пример #17
0
 def get_advice(self, obj):
     return get_translation_or_dict('advice', self, obj)
Пример #18
0
 def get_label(self, obj):
     return get_translation_or_dict('difficulty', self, obj)
Пример #19
0
 def get_advised_parking(self, obj):
     return get_translation_or_dict('advised_parking', self, obj)
Пример #20
0
 def get_arrival(self, obj):
     return get_translation_or_dict('arrival', self, obj)
Пример #21
0
 def get_public_transport(self, obj):
     return get_translation_or_dict('public_transport', self, obj)
Пример #22
0
 def get_name(self, obj):
     return get_translation_or_dict('name', self, obj)
Пример #23
0
 def get_label(self, obj):
     return get_translation_or_dict('difficulty', self, obj)
Пример #24
0
 def get_label(self, obj):
     return get_translation_or_dict('network', self, obj)
Пример #25
0
 def get_departure(self, obj):
     return get_translation_or_dict('departure', self, obj)