29 lines
677 B
HTML
29 lines
677 B
HTML
{% extends "layouts/with_sidebar.html" %}
|
|
|
|
{% block sidebar %}
|
|
{{ workspace_nav | safe }}
|
|
{% endblock %}
|
|
|
|
{% block main %}
|
|
<div class="padded padded--lg">
|
|
<form method="post" action="update-name">
|
|
<section>
|
|
<h1>Table Name</h1>
|
|
<input
|
|
type="text"
|
|
autocomplete="off"
|
|
class="form__input"
|
|
data-1p-ignore
|
|
data-bwignore="true"
|
|
data-lpignore="true"
|
|
data-protonpass-ignore="true"
|
|
name="name"
|
|
value="{{ rel.relname }}"
|
|
>
|
|
<div class="form__buttons">
|
|
<button class="button button--primary" type="submit">Save</button>
|
|
</div>
|
|
</section>
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|