healthchecks/templates/admin/profile_list_projects.html
2019-01-29 10:59:10 +02:00

5 lines
157 B
HTML

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