list authorities, display name label only if available, else display authority_hrn
[unfold.git] / portal / templates / slicerequest_view.html
index af787c2..fc91224 100644 (file)
 <script>
 jQuery(document).ready(function(){
     var availableTags = [
-    {% if authorities %}
-        {% for authority in authorities %}
-        {value:"{{ authority.authority_hrn }}",label:"{{authority.name}}"},
-        {% endfor %}    
-    {% else %}
-        {value:"",label:"No authority found !!!"}
-    {% endif %}
+     {% if authorities %}
+         {% for authority in authorities %}
+             {% if authority.name %}
+                 {value:"{{ authority.authority_hrn }}",label:"{{authority.name}}"},
+             {% else %}
+                 {value:"{{ authority.authority_hrn }}",label:"{{authority.authority_hrn}}"},
+             {% endif %}
+         {% endfor %}    
+     {% else %}
+         {value:"",label:"No authority found !!!"}
+     {% endif %}
     ];
     $( "#authority_hrn" ).autocomplete({
       source: availableTags,