mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-08-05 02:35:16 +02:00
15 lines
No EOL
291 B
Twig
15 lines
No EOL
291 B
Twig
{% extends "base.html.twig" %}
|
|
|
|
{% block content %}
|
|
|
|
<div id="presidents">Loading...</div>
|
|
|
|
{% endblock %}
|
|
|
|
{% block scripts %}
|
|
<script>
|
|
$( function() {
|
|
$('#presidents').initDataTables({{ datatable_settings(datatable) }});
|
|
});
|
|
</script>
|
|
{% endblock %} |