mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-02-26 22:23:02 +01:00
30 lines
1.4 KiB
Text
30 lines
1.4 KiB
Text
= turbo_frame_tag :modal_container do
|
||
.modal.show#modal-list-memberships{ aria: { labelledby: "modal-list-memberships-label" }, role: :dialog, tabindex: -1, style: "display: block;" }
|
||
.modal-dialog
|
||
.modal-content
|
||
.modal-header
|
||
%h5.modal-title#modal-list-memberships-label= t(".title")
|
||
= button_to modal_close_path, class: "close" do
|
||
%span{ aria: { hidden: true } } ×
|
||
%span.sr-only= t("voc.close")
|
||
%div{ role: :tabpanel }
|
||
%ul.nav.nav-tabs.mt-1{ role: :tablist }
|
||
%li.nav-item{ role: "presentation" }
|
||
%a.nav-link.active{ href: "#lists-list", aria: { controls: "lists-list" }, data: { toggle: :tab }, role: :tab }
|
||
= t(".tab.list.title")
|
||
%li.nav-item{ role: "presentation" }
|
||
%a.nav-link{ href: "#create", aria: { controls: "create" }, data: { toggle: :tab }, role: :tab }
|
||
= t(".tab.create.title")
|
||
|
||
.tab-content
|
||
.tab-pane.active{ role: :tabpanel, id: "lists-list" }
|
||
%ul.list-group#lists
|
||
- @lists.each do |list|
|
||
= render "lists/item", list: list, user: @user
|
||
.tab-pane{ role: :tabpanel, id: "create" }
|
||
.modal-body
|
||
= render "lists/form", user: @user
|
||
.modal-footer
|
||
= button_to modal_close_path, class: "btn btn-primary" do
|
||
= t("voc.close")
|
||
.modal-backdrop.fade.show
|