{% extends "base.html" %} {% block content %}

Arch Linux Fellows

Below you can find a list of ex-developers (aka Project Fellows). These folks helped make Arch what it is today. Thanks!

{% for fellow in fellows %} {{ fellow.first_name }}{{ fellow.last_name.0|upper }}   {% endfor %}


{% for fellow in fellows %} {% endfor %}
Name: {{ fellow.get_full_name }}
Alias: {{ fellow.get_profile.alias }}
Past Roles: {{ fellow.get_profile.roles }}
Website: {{ fellow.get_profile.website }}
Occupation: {{ fellow.get_profile.occupation }}
YOB: {% if fellow.get_profile.yob %}{{ fellow.get_profile.yob }}{% else %} {% endif %}
Location: {{ fellow.get_profile.location }}
Languages: {{ fellow.get_profile.languages }}
Interests: {{ fellow.get_profile.interests }}
Favorite Distros: {{ fellow.get_profile.favorite_distros }}


{% endblock %}