Skip to content
Snippets Groups Projects
Commit 10aeaefa authored by Jonah Kanner's avatar Jonah Kanner :nerd: Committed by GraceDB
Browse files

javascript works

parent 1b8b640e
No related branches found
No related tags found
No related merge requests found
......@@ -7,6 +7,10 @@
"jquery": "3.2.1",
"jquery-ui": "1.12.1",
"moment-timezone": "0.5.0",
"moment": "2.11.1"
"moment": "2.11.1",
"tablesaw": "3.1.2"
},
"resolutions": {
"webcomponentsjs": "^0.6.0"
}
}
......@@ -126,7 +126,7 @@ class SupereventPublic(ListView):
def get_queryset(self, **kwargs):
# -- Query only for public events
qs = Superevent.objects.filter(is_exposed=True, category='T') #-- Change cateogry to P for production
qs = Superevent.objects.filter(is_exposed=True, category='P') #-- Change cateogry to P for production
return qs
def get_context_data(self, **kwargs):
......
......@@ -6,16 +6,10 @@
{% block jscript %}
{% load static %}
<link rel="stylesheet" href="{% static "css/labeltips.css" %}" />
<link rel="stylesheet" type="text/css" href="{% static "css/tablesaw.css" %}" />
<script src="{% static "moment/moment.js" %}"></script>
<script src="{% static "moment-timezone/builds/moment-timezone-with-data.min.js" %}"></script>
<script src="{% static "dojo/dojo.js" %}" data-dojo-config="async: true"></script>
<script src="{% static "jquery/dist/jquery.min.js" %}"></script>
<script language="javascript" type="text/javascript" src="{% static "js/tablesaw.js" %}"></script>
<script language="javascript" type="text/javascript" src="{% static "js/tablesaw-init.js" %}"></script>
<link rel="stylesheet" type="text/css" href="{% static "tablesaw/dist/tablesaw.css" %}" />
<script language="javascript" type="text/javascript" src="{% static "tablesaw/dist/tablesaw.js" %}"></script>
<script language="javascript" type="text/javascript" src="{% static "tablesaw/dist/tablesaw-init.js" %}"></script>
<script src="//filamentgroup.github.io/demo-head/loadfont.js"></script>
<!-- Styles for dgrid -->
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment