fixed misc issues
[unfold.git] / portal / templates / onelab / onelab_management-tab-about.html
index 0c0a94f..687b7de 100644 (file)
        {% endfor %}
        </p>
 </div>
-<script>$(document).ready(function() {$('#authority_name').text('{{authority.name}}')});</script>
\ No newline at end of file
+<script>$(document).ready(function() {
+{% if authority.name %}
+    auth_name = "{{authority.name}}";
+{% else %}
+    auth_name = "{{authority.authority_hrn}}";
+{% endif %}
+    $('#authority_name').text(auth_name);
+});
+</script>