{% extends 'base.html' %} {% load static %} {% block title %}Repository Detail{% endblock %} {% block content %}


Repository {{ repository.pk }}

Items:


    {% for item in items %}
  • {{ item.description }}
  • {% empty %}
  • No items in this repository.
  • {% endfor %}
{% endblock %}