{% extends "userprofile_master.html" %} {% from "userprofile_macros.html" import render_repo_listing %} {% from "_projectstring.html" import projectstring, projecticon %} {% block title %}{{user.username}} - starred{% endblock %} {% block userprofile_content %}

Starred {{ projectstring(plural=True) }}

{{ user.stars | length }} {{ projectstring(plural=(user.stars | length > 1)) }}
{% if repos %} {{ render_repo_listing(repos)}} {% else %}

No starred {{ projectstring() }}s or forks

{% endif %}
{% endblock %}