nk20/templates/activity/activity_list.html

21 lines
502 B
HTML
Raw Normal View History

2020-03-01 16:16:38 +00:00
{% extends "base.html" %}
{% load render_table from django_tables2 %}
{% load i18n crispy_forms_tags%}
{% block content %}
2020-03-27 00:31:54 +00:00
{% render_table table %}
2020-03-01 16:16:38 +00:00
2020-03-27 00:31:54 +00:00
<a class="btn btn-primary" href="{% url 'activity:activity_create' %}">{% trans 'New activity' %}</a>
2020-03-01 16:16:38 +00:00
{% endblock %}
{% block extrajavascript %}
<script type="text/javascript">
$(document).ready(function($) {
$(".table-row").click(function() {
window.document.location = $(this).data("href");
});
});
</script>
{% endblock %}