27 lines
737 B
Plaintext
27 lines
737 B
Plaintext
{% extends "table_write" %}
|
|
|
|
{% block edit_tname %}
|
|
<button class="btn" type="button" onclick="toggle_edit_tname();" id="pencil_button_edit_tname">
|
|
<i class="bi bi-pencil"></i>
|
|
</button>
|
|
{% endblock edit_tname %}
|
|
|
|
{% block share %}
|
|
<div class="button-group mt-0">
|
|
<button class="btn btn-outline-dark mt-0" data-bs-toggle="modal" data-bs-target="#share_table_modal"><i class="bi bi-send-arrow-up"></i></button>
|
|
</div>
|
|
{% endblock share %}
|
|
|
|
{% block modals %}
|
|
{{ super() }}
|
|
<!-- Table owned specific modals -->
|
|
{% include "table_owned_modals" %}
|
|
{% endblock modals %}
|
|
|
|
{% block script %}
|
|
{{ super() }}
|
|
<!-- Table owned specific functionality -->
|
|
<script type="text/javascript" src="/js/table_owned.js"></script>
|
|
{% endblock script %}
|
|
|