diff --git a/templates/accounts/profile.html b/templates/accounts/profile.html index db00a822..0c4f48c9 100644 --- a/templates/accounts/profile.html +++ b/templates/accounts/profile.html @@ -69,27 +69,23 @@
Project | -Checks | -My Role | +My role | |
---|---|---|---|---|
- {{ project }}
- |
- - - {% with project.check_set.count as n %} - {{ n }} check{{ n|pluralize }} - {% endwith %} - + | {% if project.owner == request.user %} Owner {% else %} - Member + Collaborator {% endif %} |
@@ -181,7 +177,7 @@
- You are about to leave project . + You are about to leave the project . You will lose access to its checks and integrations. Are you sure? diff --git a/templates/front/my_checks.html b/templates/front/my_checks.html index 4546f5ff..7088b184 100644 --- a/templates/front/my_checks.html +++ b/templates/front/my_checks.html @@ -19,7 +19,7 @@ {% if checks %} {% include "front/my_checks_desktop.html" %} {% else %} -You don't have any checks yet.
+ The project {{ project }} does not have any checks yet.
{% endif %}
|