diff --git a/ckan/templates/group/index.html b/ckan/templates/group/index.html index 62eb8a6002f..e248f40bbba 100644 --- a/ckan/templates/group/index.html +++ b/ckan/templates/group/index.html @@ -14,7 +14,16 @@

{{ _('Groups') }}

- {% snippet "group/snippets/group_list.html", groups=c.page.items %} + {% if c.page.items %} + {% snippet "group/snippets/group_list.html", groups=c.page.items %} + {% else %} +

+ {{ _('There are currently no groups for this site') }}. + {% if h.check_access('package_create') %} + {% link_for _('How about creating one?'), controller='group', action='new' %}. + {% endif %} +

+ {% endif %}
{{ c.page.pager() }}