mirror of https://github.com/MISP/PyTaxonomies
31 lines
935 B
HTML
31 lines
935 B
HTML
{% extends "bootstrap/base.html" %}
|
|
{% import "bootstrap/wtf.html" as wtf %}
|
|
|
|
{% block scripts %}
|
|
{{ super() }}
|
|
<script src='{{ url_for('static', filename='jquery.dataTables.min.js') }}'></script>
|
|
<script src='{{ url_for('static', filename='dataTables.bootstrap.min.js') }}'></script>
|
|
<script>
|
|
$(document).ready(function() {
|
|
var table = $('#pytaxonomies_table').DataTable({
|
|
"pageLength": 25,
|
|
"lengthMenu": [[25, 25, 100, -1], [25, 50, 100, "All"]]
|
|
});
|
|
} );
|
|
</script>
|
|
{% endblock %}
|
|
|
|
{% block styles %}
|
|
{{ super() }}
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static',filename='dataTables.bootstrap.min.css') }}">
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static',filename='pytaxonomies.css') }}">
|
|
{% endblock %}
|
|
|
|
{% block head %}
|
|
{{ super() }}
|
|
{% endblock %}
|
|
|
|
{% block navbar %}
|
|
{{nav.mynavbar.render()}}
|
|
{% endblock %}
|