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