{% extends "base.html" %} {% from "_mark.html" import tabbio_mark %} {% block title %}{{ user.name or "Signed in" }}{% endblock %} {% block body %}

{{ user.name or "Signed in" }}

Tabbio id
{{ user.id }}
Username
{{ user.username or "not set" }}
Headline
{{ user.headline or "not set" }}
Email
{{ user.email or "not shared" }}
Photo
{% if user.avatarUrl %} {% else %}not shared{% endif %}
Granted scopes
{{ granted | join(" ") }}
Connection
{{ (user.connection or {}).get("id", "") }}
Shared CV
{% if cv %}{{ cv.title }} {% elif cv_missing %}this account has no CV yet {% else %}not shared{% endif %}
Roles on the CV
{{ roles }}
Personal details
{% if cv and cv.personalDetails %}shared (cv:contact granted){% else %}withheld{% endif %}
{% if cv and cv.pdf and cv.pdf.url %} {{ tabbio_mark() }}Durable PDF link {% endif %} {% if cv %} {{ tabbio_mark() }}Stream the PDF {% endif %}

GET /v1/me/cv

{{ cv_json }}
{% endblock %}