{% extends "admin/base.html" %} {% block title %}Profile{% endblock %} {% block content %}

Profile

Edit basic information, education, experience, and awards

01

Site Customization

Characters used in the Matrix rain animation

{% if profile and profile.image_url %}
Current Profile

Current: {{ profile.image_url }}

{% endif %}

Upload a new image to replace the current one.

02
03
04
{% for link in profile_links %}
{% if link.icon %} {% endif %} {{ link.label }} {{ link.url }}
{% else %}

No external links yet

{% endfor %}
{% for edu in education %}
{{ edu.degree }} - {{ edu.institution }} {{ edu.year }}
{% else %}

No education entries yet

{% endfor %}
{% for exp in experiences %}
{{ exp.position }} @ {{ exp.organization }} {{ exp.start_date }} - {{ exp.end_date or 'Present' }}
{% else %}

No experience entries yet

{% endfor %}
{% for award in awards %}
{{ award.title }} {{ award.year }}
{% else %}

No awards yet

{% endfor %}
{% for area in research_areas %}
{{ area.name }}
{% else %}

No research areas yet

{% endfor %}
05
{% for section in custom_sections %}

{{ section.title }}

{% if section.subtitle %}

{{ section.subtitle }}

{% endif %} {% if section.year %}

{{ section.year }}

{% endif %} {% if section.tags %}
{% for tag in section.tags.split(',') %} {{ tag.strip() }} {% endfor %}
{% endif %} {{ 'Visible' if section.is_visible else 'Hidden' }} Order: {{ section.order }}
Edit Editor
{{ section.content | striptags }}
Sub-Items
{% if section.items %}
{% for item in section.items|sort(attribute='order') %}
{{ item.title }} {% if item.subtitle %} {{ item.subtitle }} {% endif %} {% if item.year %} {{ item.year }} {% endif %}
{% endfor %}
{% else %}

No items yet

{% endif %}
{% else %}

No custom sections yet

{% endfor %}
{% endblock %}