Created
March 19, 2016 23:57
-
-
Save robert8138/11d7bb8303dd7d9dadd5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% 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