Advertisement
Guest User

problem_list.html

a guest
Feb 24th, 2022
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.36 KB | None | 0 0
  1. {% extends "base_generic.html" %}
  2.  
  3. {% block content %}
  4.   <h1>Problem List</h1>
  5.   {% if problem_list %}
  6.   <ul>
  7.     {% for prob in problem_list %}
  8.       <li>
  9.         <a href="{{ Problem.get_absolute_url(prob) }}">{{prob.id}</a>
  10.       </li>
  11.     {% endfor %}
  12.   </ul>
  13.   {% else %}
  14.     <p>There are no problems in trivial.</p>
  15.   {% endif %}
  16. {% endblock %}
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement