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
|
2025-12-18 12:55:01 -08:00
|
|
|
class="button button--secondary"
|
2025-11-13 02:59:00 +00:00
|
|
|
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-12-18 12:55:01 -08:00
|
|
|
<main class="page-grid__main padded 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-12-18 12:55:01 -08:00
|
|
|
<input
|
|
|
|
|
type="text"
|
|
|
|
|
autocomplete="off"
|
|
|
|
|
class="form__input"
|
|
|
|
|
data-1p-ignore
|
|
|
|
|
data-bwignore="true"
|
|
|
|
|
data-lpignore="true"
|
|
|
|
|
data-protonpass-ignore="true"
|
|
|
|
|
name="name"
|
|
|
|
|
value="{{ portal.name }}"
|
|
|
|
|
>
|
|
|
|
|
<div class="form__buttons">
|
|
|
|
|
<button class="button button--primary" type="submit">Save</button>
|
|
|
|
|
</div>
|
2025-10-01 22:36:19 -07:00
|
|
|
</section>
|
|
|
|
|
</form>
|
|
|
|
|
</main>
|
|
|
|
|
</div>
|
|
|
|
|
{% endblock %}
|