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)
 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)