We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3286e00 commit c8c48fdCopy full SHA for c8c48fd
fedcode/templates/user_profile.html
@@ -174,7 +174,12 @@
174
<i class="fas fa-external-link-alt fa-xs"></i>
175
</span>
176
</a>
177
- to create your profile picture using your email address — {{ person.user.email }}
+ to create your profile picture using your email address —
178
+ {% if person.user.email %}
179
+ <span class="has-text-info">{{ person.user.email }}</span>
180
+ {% else %}
181
+ <span class="has-text-danger">No email found!</span>
182
+ {% endif %}
183
</p>
184
<div class="has-text-centered mt-3">
185
<button class="button is-info" onclick="closeModal()">Close</button>
0 commit comments