anope

- supernets anope source code & configuration
git clone git://git.acid.vegas/anope.git
Log | Files | Refs | Archive | README

alist.html (485B)

      1 {INCLUDE header.html}
      2 		<div class="panel-heading">Channel access list</div>
      3 		<div class="panel-body">
      4 			<table id="tableInfoNorm" class="table table-hover">
      5 				<thead>
      6 					<tr>
      7 						<th>Number</th>
      8 						<th>Channel</th>
      9 						<th>Access</th>
     10 					</tr>
     11 				</thead>
     12 				<tbody>
     13 					{FOR N,C,A IN NUMBERS,CHANNELS,ACCESSES}
     14 						<tr>
     15 							<td>{N}</td>
     16 							<td>{C}</td>
     17 							<td>{A}</td>
     18 						</tr>
     19 					{END FOR}
     20 				</tbody>
     21 			</table>
     22 		</div>
     23 {INCLUDE footer.html}