mirror of
https://github.com/DarkflameUniverse/NexusDashboard.git
synced 2024-11-09 19:58:19 +00:00
105 lines
2.9 KiB
Django/Jinja
105 lines
2.9 KiB
Django/Jinja
{% extends 'base.html.j2' %}
|
|
|
|
{% block title %}
|
|
{{ name }} History for {{start_date}} to {{end_date}}
|
|
{% endblock title %}
|
|
|
|
{% block content_before %}
|
|
{{ name }} History for {{start_date}} to {{end_date}}
|
|
{% endblock content_before %}
|
|
|
|
{% block content %}
|
|
<div class ="row">
|
|
{% if data_type == "items" %}
|
|
<div class="col">
|
|
<a role="button" class="btn btn-primary btn btn-block"
|
|
href='{{url_for('reports.items_graph', start=(start|int+1), end=(end|int+1))}}'>
|
|
Previous
|
|
</a>
|
|
</div>
|
|
{% if end|int > 0 %}
|
|
<div class="col">
|
|
<a role="button" class="btn btn-primary btn btn-block"
|
|
href='{{url_for('reports.items_graph', start=(start|int-1), end=(end|int-1))}}'>
|
|
Next
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
{% elif data_type == "currency" %}
|
|
<div class="col">
|
|
<a role="button" class="btn btn-primary btn btn-block"
|
|
href='{{url_for('reports.currency_graph', start=(start|int+1), end=(end|int+1))}}'>
|
|
Previous
|
|
</a>
|
|
</div>
|
|
{% if end|int > 0 %}
|
|
<div class="col">
|
|
<a role="button" class="btn btn-primary btn btn-block"
|
|
href='{{url_for('reports.currency_graph', start=(start|int-1), end=(end|int-1))}}'>
|
|
Next
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
{% elif data_type == "uscore" %}
|
|
<div class="col">
|
|
<a role="button" class="btn btn-primary btn btn-block"
|
|
href='{{url_for('reports.uscore_graph', start=(start|int+1), end=(end|int+1))}}'>
|
|
Previous
|
|
</a>
|
|
</div>
|
|
{% if end|int > 0 %}
|
|
<div class="col">
|
|
<a role="button" class="btn btn-primary btn btn-block"
|
|
href='{{url_for('reports.uscore_graph', start=(start|int-1), end=(end|int-1))}}'>
|
|
Next
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
{% else %}
|
|
<h1> INVALID DATA TYPE </h1>
|
|
{% endif %}
|
|
</div>
|
|
<hr/>
|
|
<canvas id="item_chart"></canvas>
|
|
{% endblock %}
|
|
|
|
{% block js %}
|
|
{{ super () }}
|
|
<script type="text/javascript" src="{{ url_for('static', filename='chartjs/chart.min.js') }}"></script>
|
|
<script>
|
|
$(document).ready(function(){
|
|
let config = {
|
|
type: 'line',
|
|
data: {
|
|
labels: {{labels}},
|
|
datasets: {{datasets}},
|
|
},
|
|
options: {
|
|
plugins: { legend: { display: false }, },
|
|
scales: {
|
|
x: {
|
|
display: true,
|
|
title: {
|
|
display: true,
|
|
text: 'Date'
|
|
}
|
|
},
|
|
y: {
|
|
display: true,
|
|
title: {
|
|
display: true,
|
|
text: '{{ name }}'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|
|
let items_chart = new Chart(
|
|
document.getElementById('item_chart'),
|
|
config
|
|
);
|
|
}
|
|
);
|
|
</script>
|
|
{% endblock %}
|