Skip to content

Instantly share code, notes, and snippets.

@robert8138
Created March 19, 2016 23:57
Show Gist options
  • Save robert8138/11d7bb8303dd7d9dadd5 to your computer and use it in GitHub Desktop.
Save robert8138/11d7bb8303dd7d9dadd5 to your computer and use it in GitHub Desktop.
{% extends "base.html" %}
{% block title %} Calendar View {% endblock %}
{% block content %}
{% with calendarMap=calendarMap %}
{% include "buttons.html" %}
{% endwith %}
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script src="/static/css/d3.tip.v0.6.3.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Custom codes for d3 plotting -->
<link href="/static/css/calendar.css" rel="stylesheet">
<script> var calendarMap = {{ calendarMap|tojson }}; </script>
<script src="/static/calendar.js"></script>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment