diff --git a/ckan/templates/user/read.html b/ckan/templates/user/read.html index 336faceba54..cc1d60f3835 100644 --- a/ckan/templates/user/read.html +++ b/ckan/templates/user/read.html @@ -84,10 +84,18 @@

{{ _('Datasets') }}

{% if user.datasets %} {% snippet 'snippets/package_list.html', packages=user.datasets %} {% else %} -

- {{ _('You haven\'t created any datasets.') }} - {% link_for _('Create one now?'), controller='package', action='new' %}. -

+ + {% if c.is_myself %} +

+ {{ _('You haven\'t created any datasets.') }} + {% link_for _('Create one now?'), controller='package', action='new' %}. +

+ {% else %} +

+ {{ _('User hasn\'t created any datasets.') }} +

+ {% endif %} + {% endif %}