{% extends "layout.html" %} {% import "macros/_event.html" as evnt %} {% import "macros/_project.html" as proj %} {% block page_title %}{{ user.username }}{% endblock %} {% block body_class %}userprofile{% endblock %} {% block page_meta %} {% endblock %} {% block content %} {% if is_current_user and score_tip < 100 %}
To improve your score {% if score_tip > 0 %} ({{ score_tip }}%) {% endif %} - write a complete Profile and share your Story.
{% endif %} {% if current_user and current_user.is_authenticated %}
{% if is_current_user %}
Update my Profile My Story
{% elif current_user.is_admin %}
E-mail Review
{% endif %}

{% if may_certify %}
Get Certificate
{% endif %} {% endif %} {% if user.my_goals %}
{{ user.my_goals|markdown }}
{% endif %}
{% if user.carddata %}
{% endif %} {% if user.fullname %}

{{ user.fullname }} {% if user.fullname != user.username %}
{{ user.username }} {% endif %}

{% else %}

{{ user.username }}

{% endif %}
{% if user.webpage_url %} {% endif %}
{% if is_current_user %} My Data {% endif %} {% if score %}
{{ score }}
{% endif %}
{% if user.my_story %}
{{ user.my_story|markdown }}
{% endif %} {% if user.my_skills %}
🦾 Skills
{% for s in user.my_skills %} {{s}} {% endfor %}
{% endif %} {% if user.my_wishes %}
🎋 Aims
{% for w in user.my_wishes %} {{w}} {% endfor %}
{% endif %} {% if not projects %} {% if is_current_user %} {% if events_next %}
{% for event in events_next %} {{ evnt.render_home_event(event) }} {% endfor %}
{% endif %}
No projects here yet. Join an event and start something awesome!
{% endif %} {% else %}

Experience

{% if events %} {% endif %}
{% for project in projects %} {{ proj.render_project_hexagon(project) }} {% endfor %}
{% endif %} {% if vitae %}

Resume

{% for vitatype in vitae %} {% for vita in user.simple_resume()[vitatype] %} {% endfor %} {% endfor %}
{{ vita.name }} {{ vita.summary }}
Download
{% endif %} {% if not posts %} {% if is_current_user %}
Once you join a project, write some Posts to show a log of your work here.
{% endif %} {% else %}

Dribs

{% if is_current_user %}
Write a Post
{% endif %}
{% for s in posts %}
{% if s.content %}
{{s.content|markdown|safe}}
{% endif %}
{{s.timesince}}
{% endfor %}
{% endif %} {% endblock %}