Files @ 0ecebd0f7370
Branch filter:

Location: FVDE/ennstatus/ennstatus/templates/statistics/worldmap.html

Dennis Fink
Added total to received donations
{% extends "base.html"%}

{% set title = "index" %}

{% block styles %}
  {{ super() }}
  <link rel="stylesheet" href="{{ url_for('static', filename='css/map.css') }}" />
{% endblock %}

{% block content %}
  <div class="col-md-12">
    <div id="chart">
    </div>
  </div>
{% endblock %}

{% block scripts %}
  {{ super() }}
  <script src="{{ url_for('static', filename='js/d3/d3.min.js') }}"></script>
  <script src="{{ url_for('static', filename='js/topojson/topojson.js') }}"></script>
  <script src="{{ url_for('static', filename='js/worldmap.js') }}"></script>
{% endblock %}