mirror of
https://github.com/torrentpier/torrentpier.git
synced 2024-11-08 06:30:43 -08:00
fed538625d
* Created template file for AJAX quick actions * Update CHANGELOG.md
53 lines
2.7 KiB
Smarty
53 lines
2.7 KiB
Smarty
<!-- IF EDITABLE_TPLS -->
|
|
<div id="editable-tpl-input" style="display: none;">
|
|
<span class="editable-inputs nowrap" style="display: none;">
|
|
<input type="text" class="editable-value"/>
|
|
<input type="button" class="editable-submit" value="»" style="width: 30px; font-weight: bold;"/>
|
|
<input type="button" class="editable-cancel" value="x" style="width: 30px;"/>
|
|
</span>
|
|
</div>
|
|
<div id="editable-tpl-yesno-select" style="display: none;">
|
|
<span class="editable-inputs nowrap" style="display: none;">
|
|
<select class="editable-value">
|
|
<option value="1"> {L_YES} </option>
|
|
<option value="0"> {L_NO} </option>
|
|
</select>
|
|
<input type="button" class="editable-submit" value="»" style="width: 30px; font-weight: bold;"/>
|
|
<input type="button" class="editable-cancel" value="x" style="width: 30px;"/>
|
|
</span>
|
|
</div>
|
|
<div id="editable-tpl-yesno-radio" style="display: none;">
|
|
<span class="editable-inputs nowrap" style="display: none;">
|
|
<label><input class="editable-value" type="radio" name="editable-value" value="1"/>{L_YES}</label>
|
|
<label><input class="editable-value" type="radio" name="editable-value" value="0"/>{L_NO}</label>
|
|
<input type="button" class="editable-submit" value="»" style="width: 30px; font-weight: bold;"/>
|
|
<input type="button" class="editable-cancel" value="x" style="width: 30px;"/>
|
|
</span>
|
|
</div>
|
|
<div id="editable-tpl-yesno-gender" style="display: none;">
|
|
<span class="editable-inputs nowrap" style="display: none;">
|
|
<select class="editable-value">
|
|
<option value="0"> {$lang['GENDER_SELECT'][0]} </option>
|
|
<option value="1"> {$lang['GENDER_SELECT'][1]} </option>
|
|
<option value="2"> {$lang['GENDER_SELECT'][2]} </option>
|
|
</select>
|
|
<input type="button" class="editable-submit" value="»" style="width: 30px; font-weight: bold;">
|
|
<input type="button" class="editable-cancel" value="x" style="width: 30px;">
|
|
</span>
|
|
</div>
|
|
<div id="editable-tpl-yesno-twitter" style="display: none;">
|
|
<span class="editable-inputs nowrap" style="display: none;">
|
|
<input type="text" class="editable-value" value="{TWITTER}"/>
|
|
<input type="button" class="editable-submit" value="»" style="width: 30px; font-weight: bold;">
|
|
<input type="button" class="editable-cancel" value="x" style="width: 30px;">
|
|
</span>
|
|
</div>
|
|
<div id="editable-tpl-yesno-birthday" style="display: none;">
|
|
<span class="editable-inputs nowrap" style="display: none;">
|
|
<input type="date" class="editable-value" value="{BIRTHDAY}"/>
|
|
<input type="button" class="editable-submit" value="»" style="width: 30px; font-weight: bold;">
|
|
<input type="button" class="editable-cancel" value="x" style="width: 30px;">
|
|
</span>
|
|
</div>
|
|
<!-- ENDIF / EDITABLE_TPLS -->
|