{% extends "base.html" %} {% set active_page = "profile" %} {% import "account/_helpers.html" as helper %} {% import "projects/_helpers.html" as project_helper %} {% block content %} {% if enforce_privacy and (current_user.is_anonymous() or (current_user.is_authenticated() and not current_user.admin)) %} {{ privacy.render_lock_page() }} {% else %}
{{ helper.render_user_profile(user, upload_method, private=False) }}
{% if projects %} {{project_helper.render_grid_projects(projects, "Contributions", upload_method)}} {% else %}

No contributions

Here's your chance for a headstart!

{% endif %}
{% endif %} {{ project_helper.broken_image() }} {% endblock %}