1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
{% extends "base.html" %} {% block content %} <h2>{{repo.name}}</h2> {{repo.description}} {% if readme %} <h3>README</h3> {{readme | safe}} {% endif %} <h3>Commit History</h3> <ul> {% for commit in commits %} <li>{{commit}} {% endfor %} {% endblock %}