pytask/templates/templatetags/_as_browse_textbooks.html
changeset 496 eb1982186306
equal deleted inserted replaced
495:773e886d9b80 496:eb1982186306
       
     1 <h2>{{ title }}</h2>
       
     2 <h3>List of textbooks open for contribution</h3>
       
     3 <ul>
       
     4   {% for task in tasks %}
       
     5     <li>
       
     6       <a href="{% url view_textbook task.id %}">
       
     7         {{ task.title }}
       
     8       </a>
       
     9     </li>
       
    10   {% endfor %}
       
    11 </ul>
       
    12 <br />