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)]
Esempio n. 2
0
 def get_published(self, obj):
     return get_translation_or_dict('published', self, obj)
Esempio n. 3
0
 def get_arrival(self, obj):
     return get_translation_or_dict('arrival', self, obj)
 def get_practical_info(self, obj):
     return get_translation_or_dict('practical_info', self, obj)
Esempio n. 5
0
 def get_description(self, obj):
     return get_translation_or_dict('description', self, obj)
Esempio n. 6
0
 def get_published(self, obj):
     return get_translation_or_dict('published', self, obj)
Esempio n. 7
0
 def get_departure(self, obj):
     return get_translation_or_dict('departure', self, obj)
Esempio n. 8
0
 def get_label(self, obj):
     return get_translation_or_dict('network', self, obj)
Esempio n. 9
0
 def get_title(self, obj):
     return get_translation_or_dict('title', self, obj)
Esempio n. 10
0
 def get_route(self, obj):
     return get_translation_or_dict('route', self, obj)
Esempio n. 11
0
 def get_content(self, obj):
     return get_translation_or_dict('content', self, obj)
Esempio n. 12
0
 def get_disabled_infrastructure(self, obj):
     return get_translation_or_dict('disabled_infrastructure', self,
                                    obj)
Esempio n. 13
0
 def get_ambiance(self, obj):
     return get_translation_or_dict('ambiance', self, obj)
Esempio n. 14
0
 def get_access(self, obj):
     return get_translation_or_dict('access', self, obj)
Esempio n. 15
0
 def get_description(self, obj):
     return get_translation_or_dict('description', self, obj)
Esempio n. 16
0
 def get_name(self, obj):
     return get_translation_or_dict('name', self, obj)
Esempio n. 17
0
 def get_advice(self, obj):
     return get_translation_or_dict('advice', self, obj)
Esempio n. 18
0
 def get_label(self, obj):
     return get_translation_or_dict('difficulty', self, obj)
Esempio n. 19
0
 def get_advised_parking(self, obj):
     return get_translation_or_dict('advised_parking', self, obj)
Esempio n. 20
0
 def get_arrival(self, obj):
     return get_translation_or_dict('arrival', self, obj)
Esempio n. 21
0
 def get_public_transport(self, obj):
     return get_translation_or_dict('public_transport', self, obj)
Esempio n. 22
0
 def get_name(self, obj):
     return get_translation_or_dict('name', self, obj)
Esempio n. 23
0
 def get_label(self, obj):
     return get_translation_or_dict('difficulty', self, obj)
Esempio n. 24
0
 def get_label(self, obj):
     return get_translation_or_dict('network', self, obj)
Esempio n. 25
0
 def get_departure(self, obj):
     return get_translation_or_dict('departure', self, obj)