mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
1.3 KiB
25 lines
1.3 KiB
<% banner_html = capture do %>
|
|
<div class="sticky top-0 z-50 bg-base-100 py-2 px-2 flex items-center" style="margin: 0px -8px -16px -8px">
|
|
<div class="text-xl md:text-3xl font-semibold focus:text-clip" style="width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;">
|
|
<%= @template.name %>
|
|
</div>
|
|
<div class="flex items-center" style="margin-left: 20px; flex-shrink: 0">
|
|
<% if @template.submitters.size > 1 %>
|
|
<form action="<%= template_form_path(@template) %>" method="get" class="mr-3">
|
|
<select onchange="this.form.submit()" name="uuid" class="select base-input text-center font-normal" style="width: 180px; flex-shrink: 0;">
|
|
<% @template.submitters.each do |submitter| %>
|
|
<%= tag.option(value: submitter['uuid'], selected: submitter['uuid'] == @submitter.uuid) do %>
|
|
<%= submitter['name'] %>
|
|
<% end %>
|
|
<% end %>
|
|
</select>
|
|
</form>
|
|
<% end %>
|
|
<a href="<%= edit_template_path(@template) %>" class="base-button" data-turbo="false" style="flex-shrink: 0; padding: 0px 24px;">
|
|
Exit Preview
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
<%= render template: 'submit_form/show', locals: { dry_run: true, expand: false, banner_html:, scroll_padding: '-120px' } %>
|