Files
stellars-jupyterhub-ds/services/jupyterhub/html_templates_enhanced/settings.html
stellarshenson 181e2ac5f4 chore: cleanup templates directory structure
- Remove unused *.html from services/jupyterhub/templates/
- Keep only certs/ subdirectory in templates/
- Rename templates_enhanced to html_templates_enhanced
- Update Dockerfile COPY paths
2026-01-14 17:19:12 +01:00

55 lines
1.7 KiB
HTML

{% extends "page.html" %}
{% block main %}
<div class="container">
<h1>Platform Settings</h1>
<p class="text-muted">Read-only view of current environment variables and configuration</p>
<hr>
<div class="row">
<div class="col-12">
<table class="table table-striped table-sm">
<thead class="table-dark">
<tr>
<th style="width: 20%;">Category</th>
<th style="width: 30%;">Setting</th>
<th style="width: 25%;">Value</th>
<th style="width: 25%;">Description</th>
</tr>
</thead>
<tbody>
{% set current_category = namespace(value='') %}
{% for setting in settings %}
<tr>
<td>
{% if setting.category != current_category.value %}
<strong>{{ setting.category }}</strong>
{% set current_category.value = setting.category %}
{% endif %}
</td>
<td><code>{{ setting.name }}</code></td>
<td>
{% if setting.value|length > 50 %}
<span title="{{ setting.value }}">{{ setting.value[:47] }}...</span>
{% else %}
{{ setting.value }}
{% endif %}
</td>
<td class="text-muted">{{ setting.description }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
<hr>
<p class="text-muted small">
These settings are configured via environment variables in <code>compose.yml</code> or <code>compose_override.yml</code>.
Changes require container restart to take effect.
</p>
</div>
{% endblock %}