23 lines
600 B
HTML
Executable File
23 lines
600 B
HTML
Executable File
{% extends 'rapids/base.html' %}
|
|
|
|
{% block content %}
|
|
My Questions:
|
|
<ul>
|
|
{% for rapid in user_rapids %}
|
|
<li{% if rapid.scrapped %} class='rapid-scrapped' {% endif %}><a
|
|
href="{% url 'rapids:rapid_detail' pk=rapid.pk %}">{{rapid}}
|
|
[{{rapid.get_authors}}]</a></li>
|
|
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
Other Questions:
|
|
<ul>
|
|
{% for rapid in other_rapids %}
|
|
<li{% if rapid.scrapped %} class='rapid-scrapped' {% endif %}><a
|
|
href="{% url 'rapids:rapid_detail' pk=rapid.pk %}">{{rapid}} [{{rapid.get_authors}}]</a></li>
|
|
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
{% endblock %} |