2025-10-01 22:36:19 -07:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
|
|
{% block main %}
|
|
|
|
|
<div class="page-grid">
|
|
|
|
|
<div class="page-grid__toolbar">
|
2025-11-13 02:59:00 +00:00
|
|
|
<div class="page-grid__toolbar-utilities">
|
|
|
|
|
<a
|
|
|
|
|
class="button--secondary"
|
|
|
|
|
href="{{ navigator.portal_page()
|
|
|
|
|
.workspace_id(*portal.workspace_id)
|
|
|
|
|
.rel_oid(*portal.class_oid)
|
|
|
|
|
.portal_id(*portal.id)
|
|
|
|
|
.build()?
|
|
|
|
|
.get_path() }}"
|
|
|
|
|
role="button"
|
|
|
|
|
>
|
2025-10-01 22:36:19 -07:00
|
|
|
Back
|
2025-11-13 02:59:00 +00:00
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
{% include "toolbar_user.html" %}
|
2025-10-01 22:36:19 -07:00
|
|
|
</div>
|
|
|
|
|
<div class="page-grid__sidebar">
|
|
|
|
|
<div style="padding: 1rem;">
|
|
|
|
|
{{ workspace_nav | safe }}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-11-01 00:17:07 +00:00
|
|
|
<main class="page-grid__main padded--lg">
|
2025-10-01 22:36:19 -07:00
|
|
|
<form method="post" action="update-name">
|
|
|
|
|
<section>
|
2025-11-13 02:59:00 +00:00
|
|
|
<h1>Portal Name</h1>
|
2025-10-01 22:36:19 -07:00
|
|
|
<input type="text" name="name" value="{{ portal.name }}">
|
|
|
|
|
<button class="button--primary" type="submit">Save</button>
|
|
|
|
|
</section>
|
|
|
|
|
</form>
|
|
|
|
|
</main>
|
|
|
|
|
</div>
|
|
|
|
|
{% endblock %}
|