Browse Source

fix doublons nombre de services

Élie Bouttier 7 years ago
parent
commit
d9f5691bde
1 changed files with 2 additions and 2 deletions
  1. 2 2
      services/templatetags/services.py

+ 2 - 2
services/templatetags/services.py

@@ -9,12 +9,12 @@ register = template.Library()
 
 @register.filter
 def active(services):
-    return services.filter(get_active_filter('allocation'))
+    return services.filter(get_active_filter('allocation')).distinct()
 
 
 @register.filter
 def inactive(services):
-    return services.exclude(get_active_filter('allocation'))
+    return services.exclude(get_active_filter('allocation')).distinct()
 
 
 @register.inclusion_tag('services/tags/deallocate_modal_div.html')