// Drop/create table for user bookings
addDropTableSql('user_booking');
addCreateTableSql('user_booking', "
-`id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
+`booking_id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`userid` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
`subject` VARCHAR(255) NOT NULL DEFAULT 'missing',
`points_mode` ENUM('ADD','SUB') NOT NULL DEFAULT 'ADD',
$content
<tr>
<td colspan="7" class="table_footer" align="center">
- <input type="hidden" name="id[0]" value="1" />
+ <input type="hidden" name="booking_id[0]" value="1" />
<input type="hidden" name="userid" value="{%get,bigintval=userid%}" />
<input type="submit" class="form_delete" name="do_delete" value="{--ADMIN_ACTION_DELETE_BOOKING_SUBMIT--}" />
</td>
<tr>
<td align="center" class="bottom right {%template,ColorSwitch%}">
- <strong>$content[id]</strong>
+ <strong>$content[booking_id]</strong>
</td>
<td align="center" class="bottom right {%template,ColorSwitch%}">
{%pipe,translatePointsSubject=$content[subject]%}
-Ein Kontoauszug aller Auf- und Abbuchungen, die Ihre Mitglieder erhalten haben.
-Sie können den Bereinigungsinterval für veraltete Einträge, sowie
-die Anzahl Einträge pro Seite einstellen.
+<div class="para">
+ Ein Kontoauszug aller Auf- und Abbuchungen, die Ihre Mitglieder erhalten
+ haben. Sie können den Bereinigungsinterval für veraltete
+ Einträge, sowie die Anzahl Einträge pro Seite einstellen.
+</div>
The table column which should be taken for the ids (see first parameter).
This' type can again only be 'string' (remember why?).
//-->
- <table-id-column name="" type="string" value="id" />
+ <table-id-column name="" type="string" value="booking_id" />
<!--
The table column which should be taken for user ids
This' type can again only be 'string' (remember why?).
always be set), alias (again can be left empty) and SQL function
(can also be left empty) which shall be applied on the column.
//-->
- <select-data-from-list-entry type="string" table="" value="id" alias="" function="" />
+ <select-data-from-list-entry type="string" table="" value="booking_id" alias="" function="" />
<select-data-from-list-entry type="string" table="" value="userid" alias="" function="" />
<select-data-from-list-entry type="string" table="" value="subject" alias="" function="" />
<select-data-from-list-entry type="string" table="" value="points_mode" alias="" function="" />