{% extends "page.html" %}
{% block main %}
{% if systems|length == 0 %}
Sorry, nothing to see here...
If you believe this is a mistake, please contact the system administrator.
Error: The systems list has not been set in entrypoint_config.py.
{% else %}
JupyterHub Entrypoint Service
Launch Jupyter notebooks in custom environments
{% if systems|length > 1 %}
Systems:
{% for sys in systems %}
{% if sys == system %}
{% endif %}
{% if system['hostname'] != '' %}
Selected custom entrypoint for {{system['displayname']}}
({{user['name']}}@{{system['hostname']}}):
{% else %}
Selected custom entrypoint for {{system['displayname']}}:
{% endif %}
None
{% for entrypoint_type in entrypoint_types %}
{% set show_add_box = entrypoint_type['mutable'] %}
{% set entrypoint = entrypoint_type['displayname'] %}
{% set entrypoint_type = entrypoint_type['name'] %}
Manage {{entrypoint}} Entrypoints
{% if show_add_box %}
delete
{% endif %}
select
{% if show_add_box %}
add
{% endif %}