__section__
default
__description__
Edit all those checkboxes for authors, topics, sections, slashboxes

* title = passed to titlebar
* tilded_box_msg = some message
* aidref = hashref of authors
* tidref = hashref of topics
* sectionref = hashref of sections
* section_descref = hashref of slashboxes
* userspace = text for userspace
* customize_title = title for "customize" titlebar

__title__

__page__
users
__lang__
en_US
__name__
tildeEd
__template__
[% PROCESS titlebar title=title width="100%" %]

<TABLE WIDTH="95%" BORDER="0" CELLPADDING="3" CELLSPACING="3" ALIGN="CENTER">
	<TR BGCOLOR="[% user.bg.3 %]">
		<TH><FONT COLOR="[% user.fg.3 %]">Authors</FONT></TH>
		<TH><FONT COLOR="[% user.fg.3 %]">Topics</FONT></TH>
		<TH><FONT COLOR="[% user.fg.3 %]">Sections</FONT></TH>
	</TR>
	<TR BGCOLOR="[% user.bg.2 %]">
		<TD VALIGN="TOP">

[% FOREACH aid = aidref.keys %]
		<INPUT TYPE="CHECKBOX" NAME="exaid_[% aid %]"[% aidref.$aid.checked %]>[% aidref.$aid.nickname %]<BR>
[% END %]

		</TD>
		<TD VALIGN="TOP"><MULTICOL COLS="3">

[% FOREACH tid = tidref.keys %]
		<INPUT TYPE="CHECKBOX" NAME="extid_[% tid %]"[% tidref.$tid.checked %]>[% tidref.$tid.alttext %]<BR>
[% END %]

		</MULTICOL></TD>
		<TD VALIGN="TOP"><MULTICOL COLS="3">
[% FOREACH section = sectionref.keys %]
		<INPUT TYPE="CHECKBOX" NAME="exsect_[% section %]"[% sectionref.$section.checked %]>[% sectionref.$section.title %]<BR>
[% END %]
		</MULTICOL>
		</TD>
	</TR>
</TABLE>
[% PROCESS titlebar width='100%' title=customize_title %]
<TABLE WIDTH="95%" ALIGN="CENTER" BORDER="0">
	<TR>
		<TD>
		<P>Look ma, I'm configurable!
		<B>Important:</B> If you leave these all unchecked, it means you
		want the <I>default</I> selection of boxes.  If you start selecting
		boxes, remember to set <B>all</B> of them that you want because the
		default selection will be <B>ignored</B>.  Default entries are bolded.

		<P><B>User Space</B> (check 'user space' below and whatever
		you place here will appear your custom [% constants.sitename %])<BR>
		<TEXTAREA NAME="mylinks" rows=5 COLS="60" WRAP="VIRTUAL">[% userspace | strip_literal %]</TEXTAREA>
		<P>
		<MULTICOL COLS="3">

[% FOREACH bid = section_descref.keys.sort %]
	[% IF section_descref.$bid.boldflag %]
		<B>
	[% END %]

		<INPUT TYPE="CHECKBOX" NAME="exboxes_[% bid %]"[% section_descref.$bid.checked %]>
		<A HREF="[% env.script_name %]?op=previewbox&bid=[% bid %]">

	[% IF bid == 'srandblock' %]
		Semi-Random Box
	[% ELSE %]
		[% section_descref.$bid.title or bid %]
	[% END %]

	 	</A><BR>

	[% IF section_descref.$bid.boldflag %]
		</B>
	[% END %]

[% END %]

		</MULTICOL>
		</TD>
	</TR>
</TABLE><P>

[% tilded_box_msg %]

__seclev__
500
