mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-09 22:55:34 +08:00
22 lines
724 B
Text
22 lines
724 B
Text
<div class="content-pane flexible">
|
|
<div class="content-header sticky-header">
|
|
<div class="title-row">
|
|
<h1>
|
|
<%= t('forms.index.head_title') %>
|
|
</h1>
|
|
</div>
|
|
</div>
|
|
<div id="formsTable" class="fixed-content-body"
|
|
>
|
|
<forms-table
|
|
actions-url="<%= actions_toolbar_forms_url %>"
|
|
data-source="<%= forms_path(format: :json) %>"
|
|
create-url="<%= forms_path %>"
|
|
user-roles-url="<%= user_roles_forms_path %>"
|
|
active-page-url="<%= forms_path(view_mode: :active) %>"
|
|
archived-page-url="<%= forms_path(view_mode: :archived) %>"
|
|
current-view-mode="<%= params[:view_mode] || :active %>"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<%= javascript_include_tag 'vue_form_table' %>
|