-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgraph.html
More file actions
42 lines (36 loc) · 1.34 KB
/
graph.html
File metadata and controls
42 lines (36 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{% extends "layout.html" %}
{% block title %}
Graph
{% endblock %}
{% block main %}
<script src="static/display.js"></script>
<script type="text/javascript" src="https://d3js.org/d3.v4.min.js"></script>
<form action="{{ url_for('graph') }}" method='POST'>
<fieldset>
<div class="form-group">
<table>
<tr>
<td class="header"><h3>GitHub Language Popularity</h3></td>
</tr>
<tr>
<td><script src = "static/display.js" type="text/javascript"></script></td>
</tr>
<tr>
<td class="spacer"></td>
</tr>
<tr>
{% for LANG in LANGS %}
<td><input class="button" type="submit" name="lang_name" value="{{ LANGS[loop.index0] }}"></td>
{% endfor %}
</tr>
<tr>
<td class="spacer"></td>
</tr>
<tr>
<td>To erase your plot and start over, please click the RELOAD button.</td>
</tr>
</table>
</div>
</fieldset>
</form>
{% endblock %}