diff --git a/templates/projects/external_config.html b/templates/projects/external_config.html
index 0bebbf47..00cb681b 100644
--- a/templates/projects/external_config.html
+++ b/templates/projects/external_config.html
@@ -23,14 +23,24 @@
{{_('No external services have been configured')}}
For more information on these settings, please consult the External Configurations documentation.
{% endif %}
-Authorized Services
-{{ authorized_services|join(', ') }}
{% for (form_name, display, form) in forms %}
{{display}}
{{render_form(form, form_id=form_name, action_url=url_for('project.ext_config', short_name=project.short_name), action_text='Submit', class_='', btn_name=form_name, btn_class='btn btn-default', btn_value=None)}}
{% endfor %}
+Authorized Services
+{% if authorized_services is defined and authorized_services|length > 0 %}
+
+{% for service in authorized_services %}
+ - {{ service }}
+{% endfor %}
+
+{% else %}
+No external services.
+{% endif %}
+
+
{% endif %}
{% endblock %}