mirror of
https://github.com/znc/znc.git
synced 2026-06-24 03:52:00 +02:00
29 lines
641 B
Cheetah
29 lines
641 B
Cheetah
<? INC Header.tmpl ?>
|
|
|
|
<form action="" method="post">
|
|
<? INC _csrf_check.tmpl ?>
|
|
<table class="data">
|
|
<thead>
|
|
<tr>
|
|
<td>Name</td>
|
|
<td>Sticky</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<? LOOP ChannelLoop SORTASC=Name ?>
|
|
<tr class="<? IF __EVEN__ ?>evenrow<? ELSE ?>oddrow<? ENDIF ?>">
|
|
<td><? VAR Name ?></td>
|
|
<td><input type="checkbox" name="stick_<? VAR Name ?>"<? IF Sticky ?> checked="checked"<? ENDIF ?> /></td>
|
|
</tr>
|
|
<? ENDLOOP ?>
|
|
</tbody>
|
|
</table>
|
|
|
|
<div class="submitline">
|
|
<input type="hidden" name="submitted" value="1" />
|
|
<input type="submit" value="Save" />
|
|
</div>
|
|
</form>
|
|
|
|
<? INC Footer.tmpl ?>
|