Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {% extends "base_generic.html" %}
- {% block content %}
- <h1>Problem List</h1>
- {% if problem_list %}
- <ul>
- {% for prob in problem_list %}
- <li>
- <a href="{{ Problem.get_absolute_url(prob) }}">{{prob.id}</a>
- </li>
- {% endfor %}
- </ul>
- {% else %}
- <p>There are no problems in trivial.</p>
- {% endif %}
- {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement