Commit e358a7716b6972e34c8de281620e6cf0065b7f7b
1 parent
596fff45
Exists in
master
and in
2 other branches
Displaying reports option for webconference resource
Showing
1 changed file
with
3 additions
and
0 deletions
Show diff stats
topics/templates/resources/list.html
... | ... | @@ -44,6 +44,9 @@ |
44 | 44 | {% if resource|class_name == 'pdffile' %} |
45 | 45 | <li><a href="{% url 'pdf_files:get_chart' resource.slug %}" class="edit"><i class="fa fa-line-chart fa-fw" aria-hidden="true"></i>{% trans 'Reports' %}</a></li> |
46 | 46 | {% endif %} |
47 | + {% if resource|class_name == 'webconference' %} | |
48 | + <li><a href="{% url 'webconferences:get_chart' resource.slug %}" class="edit"><i class="fa fa-line-chart fa-fw" aria-hidden="true"></i>{% trans 'Reports' %}</a></li> | |
49 | + {% endif %} | |
47 | 50 | {% if resource|class_name == 'goals' %} |
48 | 51 | <li><a href="{% url 'goals:reports' resource.slug %}" class="edit"><i class="fa fa-file-pdf-o fa-fw" aria-hidden="true"></i>{% trans 'Reports' %}</a></li> |
49 | 52 | {% endif %} | ... | ... |