{#- If cannot load locally, load from CDN. From: https://github.com/download/polymer-cdn and https://stackoverflow.com/a/31484427 -#} {#- Test for if it is loaded derived from: https://github.com/webcomponents/webcomponentsjs/issues/26 #} {#- Import a file of vulcanized polymer components -#} {#- Can't do it directly because vulcanized doesn't integrate well with jinja templates #} {% assets "polymerBundle" -%} {%- endassets %} {# See: http://flask.pocoo.org/docs/0.11/patterns/jquery/ -#} {#- Loads jQuery from google if available, or locaclly is not -#} {% assets "minJS" -%} {%- endassets %} {#- Loads jsRoot from locally if available, or CDN if not -#} {#- jsRoot 4.6 does not work correctly, so loading from the CDN isn't ideal... #} {# Mobile support -#} {#- Disable favicon request. See: https://stackoverflow.com/a/13416784 -#} {#- -#} {#- Favicon support from: realfavicongenerator.net #} {#- Set color of nav bar -#} {#- See: https://stackoverflow.com/a/33193739 #} {#- #} {% block head %}{% endblock %}
{% block title %}ALICE OVERWATCH{% endblock %}
Time Slices

User Settings

{%- if current_user.is_authenticated -%} Return to Run List
User: {{ current_user.id }}
{%- else -%} Home Not logged in. Please login {%- endif -%}
jsroot AJAX
{# #}
Run List Trending
{# Defines content in the drawer #}
{% block drawer %}{% endblock %}
{# Flashes from: http://flask.pocoo.org/docs/0.10/patterns/flashing/ #} {% with messages = get_flashed_messages() %} {% if messages %}
{% for message in messages %}

{{ message.replace("\n", "
") | safe }}

{% endfor %}
{% endif %} {% endwith %}
{% block mainContent %}{% endblock %}

Processing Settings

Time Dependent Merge

Min:

Max:

{# NOTE: Scaling hists defaults to true and hot channel threshold defaults to 0! If these are changed, be sure to change them in the webApp validation function validateTimeSlicePostRequest() #} Scale by nEvents

Hot channel threshold (x1000)

Cancel Accept
{# Defines direct access to the body block #} {% block body %}{% endblock %} {# Previously loaded scripts on DOM ready (which will fire before onLoad()) #} {# See (answer and comments): https://stackoverflow.com/a/2414766 #} {# Hoewver, with Polymer, we should instead wait for WebComponentsReady! #}