diff --git a/community/www/dashboard/index.html b/community/www/dashboard/index.html index 4b89e6a0..7ad5e8a9 100644 --- a/community/www/dashboard/index.html +++ b/community/www/dashboard/index.html @@ -168,10 +168,11 @@ {% endfor %} - {% else %} -

You have not created any sketches.

{% endif %} + {% if not sketches %} +

You have not created any sketches.

+ {% endif %}
diff --git a/community/www/profiles/profile.html b/community/www/profiles/profile.html index 0a789e2c..3fe8c4db 100644 --- a/community/www/profiles/profile.html +++ b/community/www/profiles/profile.html @@ -107,7 +107,6 @@
- Create a New Sketch
{% if sketches %} {% for sketch in sketches %} @@ -129,10 +128,11 @@
{% endfor %} - {% else %} -

You have not created any sketches.

{% endif %}
+ {% if not sketches %} +

{{member.full_name}} has not created any skecth yet.

+ {% endif %}