healthchecks/templates/admin/profile_list_projects.html
2019-01-22 18:18:11 +02:00

5 lines
165 B
HTML

<ul>
{% for project in profile.user.project_set.all %}
<li><a href="{% url 'hc-switch-project' project.code %}">{{ project }}</a></li>
{% endfor %}
</ul>