You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
439 B

  1. <ul>
  2. {% for project in profile.user.project_set.all %}
  3. <li>
  4. <a href="{% url 'hc-checks' project.code %}">{{ project }}</a>
  5. {% if profile.num_checks > 1 %}
  6. {% with project.num_checks as n %}
  7. {% if n > 1 %}
  8. <strong>({{ n }})</strong>
  9. {% else %}
  10. ({{ n }})
  11. {% endif %}
  12. {% endwith %}
  13. {% endif %}
  14. </li>
  15. {% endfor %}
  16. </ul>