mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-22 05:15:29 +09:00
Allow identifiers to be reordered
This commit is contained in:
parent
4d607290e5
commit
a26ebf0cf4
1 changed files with 2 additions and 2 deletions
|
|
@ -101,13 +101,13 @@
|
||||||
<!--@foreach($config->signupForm as $item)-->
|
<!--@foreach($config->signupForm as $item)-->
|
||||||
<!--@if(in_array($item->name, $disabled_list))-->
|
<!--@if(in_array($item->name, $disabled_list))-->
|
||||||
<!--@elseif($item->isDefaultForm)-->
|
<!--@elseif($item->isDefaultForm)-->
|
||||||
<tr class="sticky"|cond="$item->isIdentifier" class="_imageType"|cond="$item->imageType">
|
<tr class="_imageType"|cond="$item->imageType">
|
||||||
<input type="hidden" name="list_order[]" value="{$item->name}" />
|
<input type="hidden" name="list_order[]" value="{$item->name}" />
|
||||||
<input type="hidden" name="usable_list[]" value="{$item->name}" cond="$item->isIdentifier || $item->mustRequired"/>
|
<input type="hidden" name="usable_list[]" value="{$item->name}" cond="$item->isIdentifier || $item->mustRequired"/>
|
||||||
<input type="hidden" name="{$item->name}" value="required" cond="$item->isIdentifier || $item->mustRequired"/>
|
<input type="hidden" name="{$item->name}" value="required" cond="$item->isIdentifier || $item->mustRequired"/>
|
||||||
<th scope="row">
|
<th scope="row">
|
||||||
<div class="wrap">
|
<div class="wrap">
|
||||||
<button type="button" class="dragBtn" cond="!$item->isIdentifier">Move to</button>
|
<button type="button" class="dragBtn">Move to</button>
|
||||||
<span class="_title" style="display:inline-block;white-space:pre-line;overflow:inherit;width:120px;text-overflow:ellipsis" title="{$item->title}">{$item->title}</span>
|
<span class="_title" style="display:inline-block;white-space:pre-line;overflow:inherit;width:120px;text-overflow:ellipsis" title="{$item->title}">{$item->title}</span>
|
||||||
</div>
|
</div>
|
||||||
</th>
|
</th>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue