Created
June 27, 2016 17:21
-
-
Save dkarchmer/37e421a2279a7300e994e9c86b56773a to your computer and use it in GitHub Desktop.
Example of a Django Template instantiating a Data Table
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% extends "base.html" %} | |
{% load i18n %} | |
{% block media %} | |
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/s/bs/dt-1.10.10,r-2.0.0/datatables.min.css"/> | |
{% endblock %} | |
{% block js %} | |
<!-- DataTable --> | |
<script type="text/javascript" src="https://cdn.datatables.net/s/bs/dt-1.10.10,r-2.0.0/datatables.min.js"></script> | |
<script> | |
var myData = []; | |
{% for item in items %} | |
myData.push([ | |
'{{ item.date|date:"Y-m-d H:m" }}', | |
'{{ item.value }}' | |
]); | |
{% endfor %} | |
var myTable = $('#my-table').DataTable({ | |
order: [[0, "asc"]], | |
pageLength: 25, | |
responsive: true, | |
columns: [ | |
{sTitle: "{% trans 'Date' %}", sWidth: "100px"}, | |
{sTitle: "{% trans 'value' %}", sWidth: "50px"} | |
], | |
data: myData | |
}); | |
</script> | |
{% endblock %} | |
{% block content %} | |
<h1>{% trans 'My Table' %}</h1> | |
<div class="row"> | |
<table id="my-table" class="table table-striped table-bordered" cellspacing="1" width="90%"> | |
<thead> | |
</thead> | |
<tbody> | |
</tbody> | |
</table> | |
</div> | |
{% endblock %} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment