Updating content across the site

This commit is contained in:
rachel-dtr
2019-05-10 10:28:02 -04:00
parent 2435f91b13
commit 39a0716028
6 changed files with 25 additions and 22 deletions

View File

@@ -24,7 +24,7 @@
{% if not portfolio.applications %}
{{ EmptyState(
'This portfolio doesnt have any applications yet.',
'This portfolio doesnt have any applications',
action_label='Add a new application' if can_create_applications else None,
action_href=url_for('applications.new', portfolio_id=portfolio.id) if can_create_applications else None,
icon='cloud',

View File

@@ -14,7 +14,7 @@
{% set user_can_invite = user_can(permissions.CREATE_PORTFOLIO_USERS) %}
{{ EmptyState(
'There are currently no members in this Portfolio.',
'There are currently no members in this portfolio',
action_label='Invite a new Member' if user_can_invite else None,
action_href='/members/new' if user_can_invite else None,
sub_message=None if user_can_invite else 'Please contact your JEDI Cloud portfolio administrator to invite new members.',