mirror of
https://github.com/rsyslog/loganalyzer.git
synced 2025-09-26 11:19:26 +02:00
Fixed sizes in all remaining admin panel templates
This commit is contained in:
parent
edc4e95243
commit
fe2c3d01f3
@ -3,7 +3,7 @@
|
||||
<!-- IF ISERROR="true" -->
|
||||
<br><br>
|
||||
<center>
|
||||
<div class="table_with_border_second ErrorMsg" style="width:600px">
|
||||
<div class="table_with_border_second ErrorMsg" style="width:80%">
|
||||
<div class="PriorityError">{LN_GEN_ERRORDETAILS}</div>
|
||||
<p>{ERROR_MSG}</p>
|
||||
</div>
|
||||
@ -22,14 +22,14 @@
|
||||
<br><br>
|
||||
|
||||
<!-- IF LISTCHARTS="true" -->
|
||||
<table border="0" cellpadding="2" cellspacing="1" bgcolor="#DDDDDD" width="750" class="with_border_alternate">
|
||||
<table border="0" cellpadding="2" cellspacing="1" bgcolor="#DDDDDD" width="80%" class="with_border_alternate">
|
||||
<tr>
|
||||
<td align="center" width="50" class="cellmenu1"><b>{LN_CHARTS_ID}</b></td>
|
||||
<td align="center" width="200" class="cellmenu1"><b>{LN_CHARTS_NAME}</b></td>
|
||||
<td align="center" width="60" class="cellmenu1"><b>{LN_CHARTS_ENABLEDONLY}</b></td>
|
||||
<td align="center" width="150" class="cellmenu1"><b>{LN_CHART_TYPE}</b></td>
|
||||
<td align="center" width="200" class="cellmenu1"><b>{LN_CHARTS_ASSIGNTO}</b></td>
|
||||
<td align="center" width="150" class="cellmenu1"><b>{LN_GEN_ACTIONS}</b></td>
|
||||
<td align="center" width="5%" class="cellmenu1"><b>{LN_CHARTS_ID}</b></td>
|
||||
<td align="center" width="25%" class="cellmenu1"><b>{LN_CHARTS_NAME}</b></td>
|
||||
<td align="center" width="5%" class="cellmenu1"><b>{LN_CHARTS_ENABLEDONLY}</b></td>
|
||||
<td align="center" width="20%" class="cellmenu1"><b>{LN_CHART_TYPE}</b></td>
|
||||
<td align="center" width="25%" class="cellmenu1"><b>{LN_CHARTS_ASSIGNTO}</b></td>
|
||||
<td align="center" width="20%" class="cellmenu1"><b>{LN_GEN_ACTIONS}</b></td>
|
||||
</tr>
|
||||
<!-- BEGIN CHARTS -->
|
||||
<tr>
|
||||
@ -68,13 +68,13 @@
|
||||
<!-- IF ISEDITORNEWCHART="true" -->
|
||||
<form action="{BASEPATH}admin/charts.php" method="post">
|
||||
|
||||
<table border="0" cellpadding="1" cellspacing="1" bgcolor="#DDDDDD" width="600" class="with_border_alternate">
|
||||
<table border="0" cellpadding="1" cellspacing="1" bgcolor="#DDDDDD" width="80%" class="with_border_alternate">
|
||||
<tr>
|
||||
<td align="center" class="cellmenu1" colspan="2"><b>{LN_CHARTS_ADDEDIT}</b></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" width="250"><b>{LN_CHARTS_NAME}</b></td>
|
||||
<td align="left" class="line1" width="350"><input type="text" name="Name" size="55" maxlength="255" value="{Name}"></td>
|
||||
<td align="left" class="cellmenu2" width="30%"><b>{LN_CHARTS_NAME}</b></td>
|
||||
<td align="left" class="line1" width="70%"><input type="text" name="Name" size="55" maxlength="255" value="{Name}" class="maxwidth"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" nowrap><b>{LN_CHARTS_ENABLED}</b></td>
|
||||
@ -83,7 +83,7 @@
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" nowrap><b>{LN_CHART_TYPE}</b></td>
|
||||
<td align="left" class="line1">
|
||||
<select id="chart_type" name="chart_type" size="1" OnChange="toggleSourceTypeVisibility('chart_type');">
|
||||
<select id="chart_type" name="chart_type" size="1" OnChange="toggleSourceTypeVisibility('chart_type');" class="maxwidth">
|
||||
<!-- BEGIN CHARTTYPES -->
|
||||
<option {selected} value="{type}">{DisplayName}</option>
|
||||
<!-- END CHARTTYPES -->
|
||||
@ -93,7 +93,7 @@
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" nowrap><b>{LN_CHART_FIELD}</b></td>
|
||||
<td align="left" class="line1">
|
||||
<select id="chart_field" name="chart_field" size="1">
|
||||
<select id="chart_field" name="chart_field" size="1" class="maxwidth">
|
||||
<!-- BEGIN CHARTFIELDS -->
|
||||
<option {selected} value="{ID}">{DisplayName}</option>
|
||||
<!-- END CHARTFIELDS -->
|
||||
@ -102,19 +102,19 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" nowrap><b>{LN_CHART_WIDTH}</b></td>
|
||||
<td align="left" class="line1"><input type="text" name="chart_width" size="55" maxlength="255" value="{chart_width}"></td>
|
||||
<td align="left" class="line1"><input type="text" name="chart_width" size="55" maxlength="255" value="{chart_width}" class="maxwidth"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" nowrap><b>{LN_CHART_MAXRECORDS}</b></td>
|
||||
<td align="left" class="line1"><input type="text" name="maxrecords" size="55" maxlength="255" value="{maxrecords}"></td>
|
||||
<td align="left" class="line1"><input type="text" name="maxrecords" size="55" maxlength="255" value="{maxrecords}" class="maxwidth"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" nowrap><b>{LN_CHART_SHOWPERCENT}</b></td>
|
||||
<td align="left" class="line1"><input type="checkbox" name="showpercent" value="1" {CHECKED_ISSHOWPERCENT}></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2_naked" width="150" valign="top" nowrap><b>{LN_CHARTS_FILTERSTRING}</b></td>
|
||||
<td align="left" class="line1" width="100%"><font class="ErrorMsg">{LN_CHARTS_FILTERSTRING_HELP}</font></br><input type="text" name="chart_defaultfilter" size="100" maxlength="1024" value="{chart_defaultfilter}"></td>
|
||||
<td align="left" class="cellmenu2_naked" valign="top" nowrap><b>{LN_CHARTS_FILTERSTRING}</b></td>
|
||||
<td align="left" class="line1"><font class="ErrorMsg">{LN_CHARTS_FILTERSTRING_HELP}</font></br><input type="text" name="chart_defaultfilter" size="100" maxlength="1024" value="{chart_defaultfilter}" class="maxwidth"></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
@ -125,7 +125,7 @@
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2"><b>{LN_GEN_GROUPONLY}</b></td>
|
||||
<td align="left" class="line2">
|
||||
<select name="groupid" size="1" STYLE="width: 300px" {READONLY_ISUSERONLY}>
|
||||
<select name="groupid" size="1" class="maxwidth" {READONLY_ISUSERONLY}>
|
||||
<!-- BEGIN SUBGROUPS -->
|
||||
<option value="{mygroupid}" {group_selected}>{groupname}</option>
|
||||
<!-- END SUBGROUPS -->
|
||||
@ -136,7 +136,7 @@
|
||||
</table>
|
||||
<br>
|
||||
|
||||
<table border="0" cellpadding="1" cellspacing="1" bgcolor="#DDDDDD" width="600" class="with_border_alternate">
|
||||
<table border="0" cellpadding="1" cellspacing="1" bgcolor="#DDDDDD" width="80%" class="with_border_alternate">
|
||||
<tr>
|
||||
<td align="center" colspan="2">
|
||||
<input type="submit" value="{CHART_SENDBUTTON}">
|
||||
|
@ -3,7 +3,7 @@
|
||||
<!-- IF ISERROR="true" -->
|
||||
<br><br>
|
||||
<center>
|
||||
<div class="table_with_border_second ErrorMsg" style="width:600px">
|
||||
<div class="table_with_border_second ErrorMsg" style="width:80%">
|
||||
<div class="PriorityError">{LN_GEN_ERRORDETAILS}</div>
|
||||
<p>{ERROR_MSG}</p>
|
||||
</div>
|
||||
@ -22,12 +22,12 @@
|
||||
<br><br>
|
||||
|
||||
<!-- IF LISTDBMAPPINGS="true" -->
|
||||
<table border="0" cellpadding="2" cellspacing="1" bgcolor="#DDDDDD" width="750" class="with_border_alternate">
|
||||
<table border="0" cellpadding="2" cellspacing="1" bgcolor="#DDDDDD" width="80%" class="with_border_alternate">
|
||||
<tr>
|
||||
<td align="center" width="50" class="cellmenu1"><b>{LN_DBMP_ID}</b></td>
|
||||
<td align="center" width="150" class="cellmenu1"><b>{LN_DBMP_NAME}</b></td>
|
||||
<td align="center" width="275" class="cellmenu1"><b>{LN_DBMP_DBMAPPINGS}</b></td>
|
||||
<td align="center" width="125" class="cellmenu1"><b>{LN_GEN_ACTIONS}</b></td>
|
||||
<td align="center" width="15%" class="cellmenu1"><b>{LN_DBMP_ID}</b></td>
|
||||
<td align="center" width="25%" class="cellmenu1"><b>{LN_DBMP_NAME}</b></td>
|
||||
<td align="center" width="40%" class="cellmenu1"><b>{LN_DBMP_DBMAPPINGS}</b></td>
|
||||
<td align="center" width="20%" class="cellmenu1"><b>{LN_GEN_ACTIONS}</b></td>
|
||||
</tr>
|
||||
<!-- BEGIN DBMP -->
|
||||
<tr>
|
||||
@ -63,33 +63,33 @@
|
||||
|
||||
<!-- IF ISEDITORNEWDBMP="true" -->
|
||||
<form action="{BASEPATH}admin/dbmappings.php{FormUrlAddOP}" method="post">
|
||||
<table border="0" cellpadding="1" cellspacing="1" bgcolor="#DDDDDD" width="700" class="with_border_alternate">
|
||||
<table border="0" cellpadding="1" cellspacing="1" bgcolor="#DDDDDD" width="80%" class="with_border_alternate">
|
||||
<tr>
|
||||
<td align="center" class="cellmenu1" colspan="2"><b>{LN_DBMP_ADDEDIT}</b></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" width="250"><b>{LN_DBMP_NAME}</b></td>
|
||||
<td align="left" class="line1" width="350"><input type="text" name="DisplayName" size="55" maxlength="255" value="{DisplayName}"></td>
|
||||
<td align="left" class="cellmenu2" width="30%"><b>{LN_DBMP_NAME}</b></td>
|
||||
<td align="left" class="line1" width="70%"><input type="text" name="DisplayName" size="55" maxlength="255" value="{DisplayName}" class="maxwidth"></td>
|
||||
</tr>
|
||||
</table>
|
||||
<br>
|
||||
<table border="0" cellpadding="1" cellspacing="1" bgcolor="#DDDDDD" width="700" class="with_border_alternate">
|
||||
<table border="0" cellpadding="1" cellspacing="1" bgcolor="#DDDDDD" width="80%" class="with_border_alternate">
|
||||
<tr>
|
||||
<td align="center" class="cellmenu1" colspan="4"><b>{LN_DBMP_DBMAPPINGSLIST}</b></td>
|
||||
</tr>
|
||||
<!-- BEGIN SUBMAPPINGS -->
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" width="150"><b>{LN_DBMP_MAPPING} {ZAEHLER}: </b></td>
|
||||
<td align="left" class="cellmenu2" width="15%"><b>{LN_DBMP_MAPPING} {ZAEHLER}: </b></td>
|
||||
|
||||
<td align="left" class="{colcssclass}" width="275">
|
||||
<td align="left" class="{colcssclass}" width="40%">
|
||||
<input type="hidden" name="Mappings[]" value="{MappingFieldID}">
|
||||
<b>{MappingCaption} (<I>{MappingInternalID}</I>)</b>
|
||||
</td>
|
||||
<td align="left" class="{colcssclass}" width="225">
|
||||
<input type="text" name="{MappingFieldID}" size="24" maxlength="255" value="{MappingDbFieldName}">
|
||||
<td align="left" class="{colcssclass}" width="25%">
|
||||
<input type="text" name="{MappingFieldID}" size="24" maxlength="255" value="{MappingDbFieldName}" class="maxwidth">
|
||||
</td>
|
||||
|
||||
<td align="center" class="{colcssclass}" width="150">
|
||||
<td align="center" class="{colcssclass}" width="20%">
|
||||
<button name="subop_edit" type="submit" value="{MappingFieldID}" class="borderlessbuttons" title="{LN_DBMP_MAPPING_EDIT}"><img src="{MENU_EDIT}" width="16" alt="{LN_DBMP_MAPPING_EDIT}"></button>
|
||||
<button name="subop_moveup" type="submit" value="{MappingFieldID}" class="borderlessbuttons" title="{LN_DBMP_MAPPING_MOVEUP}"><img src="{MENU_MOVE_UP}" width="16" alt="{LN_DBMP_MAPPING_REMOVE}"></button>
|
||||
<button name="subop_movedown" type="submit" value="{MappingFieldID}" class="borderlessbuttons" title="{LN_DBMP_MAPPING_MOVEDOWN}"><img src="{MENU_MOVE_DOWN}" width="16" alt="{LN_DBMP_MAPPING_REMOVE}"></button>
|
||||
@ -100,7 +100,7 @@
|
||||
<tr>
|
||||
<td align="center" class="line2" colspan="4">
|
||||
|
||||
<select name="newmapping" size="1" STYLE="width: 200px">
|
||||
<select name="newmapping" size="1" class="maxwidth">
|
||||
<!-- BEGIN FIELDS -->
|
||||
<option value="{FieldID}" {group_selected}>{FieldCaption}</option>
|
||||
<!-- END FIELDS -->
|
||||
@ -110,7 +110,7 @@
|
||||
</tr>
|
||||
</table>
|
||||
<br>
|
||||
<table border="0" cellpadding="1" cellspacing="1" bgcolor="#DDDDDD" width="600" class="with_border_alternate">
|
||||
<table border="0" cellpadding="1" cellspacing="1" bgcolor="#DDDDDD" width="80%" class="with_border_alternate">
|
||||
<tr>
|
||||
<td align="center" colspan="2" class="line0">
|
||||
<br>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<!-- IF ISERROR="true" -->
|
||||
<br><br>
|
||||
<center>
|
||||
<div class="table_with_border_second ErrorMsg" style="width:600px">
|
||||
<div class="table_with_border_second ErrorMsg" style="width:80%">
|
||||
<div class="PriorityError">{LN_GEN_ERRORDETAILS}</div>
|
||||
<p>{ERROR_MSG}</p>
|
||||
</div>
|
||||
@ -22,12 +22,12 @@
|
||||
<br><br>
|
||||
|
||||
<!-- IF LISTFIELDS="true" -->
|
||||
<table border="0" cellpadding="2" cellspacing="1" bgcolor="#DDDDDD" width="750" class="with_border_alternate">
|
||||
<table border="0" cellpadding="2" cellspacing="1" bgcolor="#DDDDDD" width="80%" class="with_border_alternate">
|
||||
<tr>
|
||||
<td align="center" width="150" class="cellmenu1"><b>{LN_FIELDS_NAME}</b></td>
|
||||
<td align="center" width="150" class="cellmenu1"><b>{LN_FIELDS_ID}</b></td>
|
||||
<td align="center" width="200" class="cellmenu1"><b>{LN_FIELDS_DEFINE}</b></td>
|
||||
<td align="center" width="150" class="cellmenu1"><b>{LN_GEN_ACTIONS}</b></td>
|
||||
<td align="center" width="20%" class="cellmenu1"><b>{LN_FIELDS_NAME}</b></td>
|
||||
<td align="center" width="20%" class="cellmenu1"><b>{LN_FIELDS_ID}</b></td>
|
||||
<td align="center" width="40%" class="cellmenu1"><b>{LN_FIELDS_DEFINE}</b></td>
|
||||
<td align="center" width="20%" class="cellmenu1"><b>{LN_GEN_ACTIONS}</b></td>
|
||||
</tr>
|
||||
<!-- BEGIN FIELDS -->
|
||||
<tr>
|
||||
@ -54,25 +54,25 @@
|
||||
|
||||
<!-- IF ISEDITORNEWFIELD="true" -->
|
||||
<form action="{BASEPATH}admin/fields.php" method="post">
|
||||
<table border="0" cellpadding="1" cellspacing="1" bgcolor="#DDDDDD" width="600" class="with_border_alternate">
|
||||
<table border="0" cellpadding="1" cellspacing="1" bgcolor="#DDDDDD" width="80%" class="with_border_alternate">
|
||||
<tr>
|
||||
<td align="center" class="cellmenu1" colspan="2"><b>{LN_FIELDS_ADDEDIT}</b></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" width="250"><b>{LN_FIELDS_ID}</b></td>
|
||||
<td align="left" class="line1" width="350"><input type="text" name="Newid" size="55" maxlength="64" value="{FieldID}" {DisableInternalFields}></td>
|
||||
<td align="left" class="cellmenu2" width="30%"><b>{LN_FIELDS_ID}</b></td>
|
||||
<td align="left" class="line1" width="70%"><input type="text" name="Newid" size="55" maxlength="64" value="{FieldID}" {DisableInternalFields} class="maxwidth"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2"><b>{LN_FIELDS_DEFINE}</b></td>
|
||||
<td align="left" class="line2"><input type="text" name="NewFieldDefine" size="55" maxlength="255" value="{FieldDefine}" {DisableInternalFields}></td>
|
||||
<td align="left" class="line2"><input type="text" name="NewFieldDefine" size="55" maxlength="255" value="{FieldDefine}" {DisableInternalFields} class="maxwidth"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2"><b>{LN_FIELDS_NAME}</b></td>
|
||||
<td align="left" class="line2"><input type="text" name="FieldCaption" size="55" maxlength="255" value="{FieldCaption}"></td>
|
||||
<td align="left" class="line2"><input type="text" name="FieldCaption" size="55" maxlength="255" value="{FieldCaption}" class="maxwidth"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2"><b>{LN_FIELDS_SEARCHFIELD}</b></td>
|
||||
<td align="left" class="line2"><input type="text" name="SearchField" size="55" maxlength="255" value="{SearchField}"></td>
|
||||
<td align="left" class="line2"><input type="text" name="SearchField" size="55" maxlength="255" value="{SearchField}" class="maxwidth"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" nowrap><b>{LN_FIELDS_SEARCHONLINE}</b></td>
|
||||
@ -82,7 +82,7 @@
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" nowrap><b>{LN_FIELDS_TYPE}</b></td>
|
||||
<td align="left" class="line1">
|
||||
<select id="FieldType" name="NewFieldType" size="1" OnChange="toggleSourceTypeVisibility('FieldType');" {DisableInternalFields}>
|
||||
<select id="FieldType" name="NewFieldType" size="1" OnChange="toggleSourceTypeVisibility('FieldType');" {DisableInternalFields} class="maxwidth">
|
||||
<!-- BEGIN FILTERTYPES -->
|
||||
<option {selected} value="{type}">{DisplayName}</option>
|
||||
<!-- END FILTERTYPES -->
|
||||
@ -92,7 +92,7 @@
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" nowrap><b>{LN_FIELDS_ALIGN}</b></td>
|
||||
<td align="left" class="line1">
|
||||
<select id="FieldAlign" name="FieldAlign" size="1" OnChange="toggleSourceTypeVisibility('FieldAlign');">
|
||||
<select id="FieldAlign" name="FieldAlign" size="1" OnChange="toggleSourceTypeVisibility('FieldAlign');" class="maxwidth">
|
||||
<!-- BEGIN ALIGMENTS -->
|
||||
<option {selected} value="{type}">{DisplayName}</option>
|
||||
<!-- END ALIGMENTS -->
|
||||
@ -101,7 +101,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2"><b>{LN_FIELDS_DEFAULTWIDTH}</b></td>
|
||||
<td align="left" class="line2"><input type="text" name="DefaultWidth" size="55" maxlength="255" value="{DefaultWidth}"></td>
|
||||
<td align="left" class="line2"><input type="text" name="DefaultWidth" size="55" maxlength="255" value="{DefaultWidth}" class="maxwidth"></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<!-- IF ISERROR="true" -->
|
||||
<br><br>
|
||||
<center>
|
||||
<div class="table_with_border_second ErrorMsg" style="width:600px">
|
||||
<div class="table_with_border_second ErrorMsg" style="width:80%">
|
||||
<div class="PriorityError">{LN_GEN_ERRORDETAILS}</div>
|
||||
<p>{ERROR_MSG}</p>
|
||||
</div>
|
||||
@ -22,12 +22,12 @@
|
||||
<br><br>
|
||||
|
||||
<!-- IF LISTGROUPS="true" -->
|
||||
<table border="0" cellpadding="2" cellspacing="1" bgcolor="#DDDDDD" width="600" class="with_border_alternate">
|
||||
<table border="0" cellpadding="2" cellspacing="1" bgcolor="#DDDDDD" width="80%" class="with_border_alternate">
|
||||
<tr>
|
||||
<td align="center" width="50" class="cellmenu1"><b>{LN_GROUP_ID}</b></td>
|
||||
<td align="center" width="100" class="cellmenu1"><b>{LN_GROUP_NAME}</b></td>
|
||||
<td align="center" width="300" class="cellmenu1"><b>{LN_GROUP_DESCRIPTION}</b></td>
|
||||
<td align="center" width="200" class="cellmenu1"><b>{LN_GEN_ACTIONS}</b></td>
|
||||
<td align="center" width="5%" class="cellmenu1"><b>{LN_GROUP_ID}</b></td>
|
||||
<td align="center" width="15%" class="cellmenu1"><b>{LN_GROUP_NAME}</b></td>
|
||||
<td align="center" width="50%" class="cellmenu1"><b>{LN_GROUP_DESCRIPTION}</b></td>
|
||||
<td align="center" width="20%" class="cellmenu1"><b>{LN_GEN_ACTIONS}</b></td>
|
||||
</tr>
|
||||
<!-- IF EMPTYGROUPS="true" -->
|
||||
<tr>
|
||||
@ -68,17 +68,17 @@
|
||||
|
||||
<!-- IF ISEDITORNEWGROUP="true" -->
|
||||
<form action="{BASEPATH}admin/groups.php" method="post">
|
||||
<table border="0" cellpadding="1" cellspacing="1" bgcolor="#DDDDDD" width="600" class="with_border_alternate">
|
||||
<table border="0" cellpadding="1" cellspacing="1" bgcolor="#DDDDDD" width="80%" class="with_border_alternate">
|
||||
<tr>
|
||||
<td align="center" class="cellmenu1" colspan="2"><b>{LN_GROUP_ADDEDIT}</b></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" width="150" nowrap><b>{LN_GROUP_NAME}</b></td>
|
||||
<td align="left" class="line0" width="100%"><input type="text" name="groupname" size="40" maxlength="64" value="{groupname}"></td>
|
||||
<td align="left" class="cellmenu2" width="30%" nowrap><b>{LN_GROUP_NAME}</b></td>
|
||||
<td align="left" class="line0" width="75%"><input type="text" name="groupname" size="40" maxlength="64" value="{groupname}" class="maxwidth"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2_naked" nowrap><b>{LN_GROUP_DESCRIPTION}</b></td>
|
||||
<td align="left" class="line1"><input type="text" name="groupdescription" size="40" maxlength="255" value="{groupdescription}"></td>
|
||||
<td align="left" class="line1"><input type="text" name="groupdescription" size="40" maxlength="255" value="{groupdescription}" class="maxwidth"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" colspan="2">
|
||||
@ -96,14 +96,14 @@
|
||||
<input type="hidden" name="id" value="{GROUPID}">
|
||||
<input type="hidden" name="groupname" value="{GROUPNAME}">
|
||||
<input type="hidden" name="op" value="adduser">
|
||||
<table border="0" cellpadding="1" cellspacing="1" bgcolor="#DDDDDD" width="600" class="with_border_alternate">
|
||||
<table border="0" cellpadding="1" cellspacing="1" bgcolor="#DDDDDD" width="80%" class="with_border_alternate">
|
||||
<tr>
|
||||
<td align="center" class="cellmenu1" colspan="2"><b>{LN_GROUP_ADDUSER}: '{GROUPNAME}'</b></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" width="150" nowrap><b>{LN_USER_NAME}</b></td>
|
||||
<td align="left" class="line0" width="100%">
|
||||
<select name="userid" size="1" STYLE="width: 190px">
|
||||
<td align="left" class="cellmenu2" width="30%" nowrap><b>{LN_USER_NAME}</b></td>
|
||||
<td align="left" class="line0" width="70%">
|
||||
<select name="userid" size="1" class="maxwidth">
|
||||
<!-- BEGIN SUBUSERS -->
|
||||
<option value="{userid}">{username}</option>
|
||||
<!-- END SUBUSERS -->
|
||||
@ -126,14 +126,14 @@
|
||||
<input type="hidden" name="id" value="{GROUPID}">
|
||||
<input type="hidden" name="groupname" value="{GROUPNAME}">
|
||||
<input type="hidden" name="op" value="removeuser">
|
||||
<table border="0" cellpadding="1" cellspacing="1" bgcolor="#DDDDDD" width="600" class="with_border_alternate">
|
||||
<table border="0" cellpadding="1" cellspacing="1" bgcolor="#DDDDDD" width="80%" class="with_border_alternate">
|
||||
<tr>
|
||||
<td align="center" class="cellmenu1" colspan="2"><b>{LN_GROUP_USERDELETE}: '{GROUPNAME}'</b></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" width="150" nowrap><b>{LN_USER_NAME}</b></td>
|
||||
<td align="left" class="line0" width="100%">
|
||||
<select name="userid" size="1" STYLE="width: 190px">
|
||||
<td align="left" class="cellmenu2" width="30%" nowrap><b>{LN_USER_NAME}</b></td>
|
||||
<td align="left" class="line0" width="70%">
|
||||
<select name="userid" size="1" class="maxwidth">
|
||||
<!-- BEGIN SUBRMUSERS -->
|
||||
<option value="{userid}">{username}</option>
|
||||
<!-- END SUBRMUSERS -->
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
<!-- IF isupdateavailable="true" -->
|
||||
<center>
|
||||
<div class="table_with_border_second ErrorMsg" style="width:400px">
|
||||
<div class="table_with_border_second ErrorMsg" style="width:80%">
|
||||
<div class="PriorityError">{LN_UPDATE_AVAILABLE}</div>
|
||||
<p>
|
||||
{LN_UPDATE_INSTALLEDVER} {BUILDNUMBER}
|
||||
@ -24,10 +24,10 @@
|
||||
<!-- ENDIF isupdateavailable="true" -->
|
||||
|
||||
<form action="" method="post">
|
||||
<table border="0" cellpadding="1" cellspacing="1" bgcolor="#DDDDDD" width="750" align="center">
|
||||
<table border="0" cellpadding="1" cellspacing="1" bgcolor="#DDDDDD" width="80%" align="center">
|
||||
<tr>
|
||||
<td colspan="2" class="line1"> </td>
|
||||
<td align="center" class="cellmenu1_naked" width="50%" nowrap rowspan="2" valign="middle">
|
||||
<td align="center" class="cellmenu1_naked" width="33%" nowrap rowspan="2" valign="middle">
|
||||
<!-- IF ENABLEUSEROPTIONS="true" -->
|
||||
<button id="buttonenableuseropt"><img src="{MENU_USEROPTIONS}" width="16" height="16" style="float:left;"></span><span class="ui-button-text">{LN_GEN_DISABLEUSEROPTIONS}</span></button>
|
||||
</br><script>CreateLinkFunction( "#buttonenableuseropt", "?op=enableuserops&value=0");</script>
|
||||
@ -40,8 +40,8 @@
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu1" width="250" nowrap><b>{LN_GEN_OPTIONNAME}</b></td>
|
||||
<td align="center" class="cellmenu1" width="50%" nowrap><img src="{MENU_GLOBAL}" align="left" width="16" height="16" vspace="0"><b>{LN_GEN_GLOBALVALUE}</b></td>
|
||||
<td align="left" class="cellmenu1" width="34%" nowrap><b>{LN_GEN_OPTIONNAME}</b></td>
|
||||
<td align="center" class="cellmenu1" width="33%" nowrap><img src="{MENU_GLOBAL}" align="left" width="16" height="16" vspace="0"><b>{LN_GEN_GLOBALVALUE}</b></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" align="center" valign="top" class="title">
|
||||
@ -50,7 +50,7 @@
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" width="250" nowrap><b>{LN_GEN_WEBSTYLE}</b></td>
|
||||
<td align="left" class="line1">
|
||||
<select name="ViewDefaultTheme" size="1" {DISABLE_GLOBALEDIT_FORMCONTROL}>
|
||||
<select name="ViewDefaultTheme" size="1" class="maxwidth" {DISABLE_GLOBALEDIT_FORMCONTROL}>
|
||||
<!-- BEGIN GLOBAL_STYLES -->
|
||||
<option {selected}>{StyleName}</option>
|
||||
<!-- END GLOBAL_STYLES -->
|
||||
@ -58,7 +58,7 @@
|
||||
</td>
|
||||
<!-- IF ENABLEUSEROPTIONS="true" -->
|
||||
<td align="left" class="line1">
|
||||
<select name="User_ViewDefaultTheme" size="1">
|
||||
<select name="User_ViewDefaultTheme" size="1" class="maxwidth">
|
||||
<!-- BEGIN USER_STYLES -->
|
||||
<option {selected}>{StyleName}</option>
|
||||
<!-- END USER_STYLES -->
|
||||
@ -67,9 +67,9 @@
|
||||
<!-- ENDIF ENABLEUSEROPTIONS="true" -->
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" width="250" nowrap><b>{LN_GEN_SELLANGUAGE}</b></td>
|
||||
<td align="left" class="cellmenu2" nowrap><b>{LN_GEN_SELLANGUAGE}</b></td>
|
||||
<td align="left" class="line2">
|
||||
<select name="ViewDefaultLanguage" size="1" {DISABLE_GLOBALEDIT_FORMCONTROL}>
|
||||
<select name="ViewDefaultLanguage" size="1" class="maxwidth" {DISABLE_GLOBALEDIT_FORMCONTROL}>
|
||||
<!-- BEGIN GLOBAL_LANGUAGES -->
|
||||
<option {selected} value="{langcode}">{DisplayName}</option>
|
||||
<!-- END GLOBAL_LANGUAGES -->
|
||||
@ -77,7 +77,7 @@
|
||||
</td>
|
||||
<!-- IF ENABLEUSEROPTIONS="true" -->
|
||||
<td align="left" class="line2">
|
||||
<select name="User_ViewDefaultLanguage" size="1">
|
||||
<select name="User_ViewDefaultLanguage" size="1" class="maxwidth">
|
||||
<!-- BEGIN USER_LANGUAGES -->
|
||||
<option {selected} value="{langcode}">{DisplayName}</option>
|
||||
<!-- END USER_LANGUAGES -->
|
||||
@ -88,7 +88,7 @@
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" nowrap><b>{LN_GEN_DEFVIEWS}</b></td>
|
||||
<td align="left" class="line1">
|
||||
<select id="DefaultViewsID" name="DefaultViewsID" size="1" {DISABLE_GLOBALEDIT_FORMCONTROL}>
|
||||
<select id="DefaultViewsID" name="DefaultViewsID" size="1" class="maxwidth" {DISABLE_GLOBALEDIT_FORMCONTROL}>
|
||||
<!-- BEGIN VIEWS -->
|
||||
<option {selected} value="{ID}">{DisplayName}</option>
|
||||
<!-- END VIEWS -->
|
||||
@ -96,7 +96,7 @@
|
||||
</td>
|
||||
<!-- IF ENABLEUSEROPTIONS="true" -->
|
||||
<td align="left" class="line1">
|
||||
<select id="User_DefaultViewsID" name="User_DefaultViewsID" size="1">
|
||||
<select id="User_DefaultViewsID" name="User_DefaultViewsID" size="1" class="maxwidth">
|
||||
<!-- BEGIN USER_VIEWS -->
|
||||
<option {selected} value="{ID}">{DisplayName}</option>
|
||||
<!-- END USER_VIEWS -->
|
||||
@ -107,7 +107,7 @@
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" nowrap><b>{LN_GEN_DEFSOURCE}</b></td>
|
||||
<td align="left" class="line1">
|
||||
<select id="DefaultSourceID" name="DefaultSourceID" size="1" {DISABLE_GLOBALEDIT_FORMCONTROL}>
|
||||
<select id="DefaultSourceID" name="DefaultSourceID" size="1" class="maxwidth" {DISABLE_GLOBALEDIT_FORMCONTROL}>
|
||||
<!-- BEGIN SOURCES -->
|
||||
<option {selected} value="{ID}">{Name}</option>
|
||||
<!-- END SOURCES -->
|
||||
@ -115,7 +115,7 @@
|
||||
</td>
|
||||
<!-- IF ENABLEUSEROPTIONS="true" -->
|
||||
<td align="left" class="line1">
|
||||
<select id="User_DefaultSourceID" name="User_DefaultSourceID" size="1">
|
||||
<select id="User_DefaultSourceID" name="User_DefaultSourceID" size="1" class="maxwidth">
|
||||
<!-- BEGIN USER_SOURCES -->
|
||||
<option {selected} value="{ID}">{Name}</option>
|
||||
<!-- END USER_SOURCES -->
|
||||
@ -126,7 +126,7 @@
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" nowrap><b>{LN_GEN_DEFFONT}</b></td>
|
||||
<td align="left" class="line1">
|
||||
<select id="DefaultFont" name="DefaultFont" size="1" {DISABLE_GLOBALEDIT_FORMCONTROL}>
|
||||
<select id="DefaultFont" name="DefaultFont" size="1" {DISABLE_GLOBALEDIT_FORMCONTROL} class="maxwidth">
|
||||
<!-- BEGIN FONTS -->
|
||||
<option {selected} value="{Name}">{Name}</option>
|
||||
<!-- END FONTS -->
|
||||
@ -134,7 +134,7 @@
|
||||
</td>
|
||||
<!-- IF ENABLEUSEROPTIONS="true" -->
|
||||
<td align="left" class="line1">
|
||||
<select id="User_DefaultFont" name="User_DefaultFont" size="1">
|
||||
<select id="User_DefaultFont" name="User_DefaultFont" size="1" class="maxwidth">
|
||||
<!-- BEGIN USER_FONTS -->
|
||||
<option {selected} value="{Name}">{Name}</option>
|
||||
<!-- END USER_FONTS -->
|
||||
@ -145,7 +145,7 @@
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" nowrap><b>{LN_GEN_DEFFONTSIZE}</b></td>
|
||||
<td align="left" class="line1">
|
||||
<select id="DefaultFontSize" name="DefaultFontSize" size="1" {DISABLE_GLOBALEDIT_FORMCONTROL}>
|
||||
<select id="DefaultFontSize" name="DefaultFontSize" size="1" {DISABLE_GLOBALEDIT_FORMCONTROL} class="maxwidth">
|
||||
<!-- BEGIN FONTSIZES -->
|
||||
<option {selected} value="{Name}">{Name}</option>
|
||||
<!-- END FONTSIZES -->
|
||||
@ -153,7 +153,7 @@
|
||||
</td>
|
||||
<!-- IF ENABLEUSEROPTIONS="true" -->
|
||||
<td align="left" class="line1">
|
||||
<select id="User_DefaultFontSize" name="User_DefaultFontSize" size="1">
|
||||
<select id="User_DefaultFontSize" name="User_DefaultFontSize" size="1" class="maxwidth">
|
||||
<!-- BEGIN USER_FONTSIZES -->
|
||||
<option {selected} value="{Name}">{Name}</option>
|
||||
<!-- END USER_FONTSIZES -->
|
||||
@ -164,68 +164,68 @@
|
||||
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" nowrap><b>{LN_GEN_PREPENDTITLE}</b></td>
|
||||
<td align="left" class="line1" ><input type="text" name="PrependTitle" size="35" maxlength="255" value="{PrependTitle}" {DISABLE_GLOBALEDIT_FORMCONTROL}></td>
|
||||
<td align="left" class="line1" ><input type="text" name="PrependTitle" size="35" maxlength="255" value="{PrependTitle}" {DISABLE_GLOBALEDIT_FORMCONTROL} class="maxwidth"></td>
|
||||
<!-- IF ENABLEUSEROPTIONS="true" -->
|
||||
<td align="left" class="line1" ><input type="text" name="User_PrependTitle" size="35" maxlength="255" value="{User_PrependTitle}"></td>
|
||||
<td align="left" class="line1" ><input type="text" name="User_PrependTitle" size="35" maxlength="255" value="{User_PrependTitle}" class="maxwidth"></td>
|
||||
<!-- ENDIF ENABLEUSEROPTIONS="true" -->
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" nowrap><b>{LN_GEN_MSGCHARLIMIT}</b></td>
|
||||
<td align="left" class="line1" ><input type="text" name="ViewMessageCharacterLimit" size="16" maxlength="12" value="{ViewMessageCharacterLimit}" {DISABLE_GLOBALEDIT_FORMCONTROL}></td>
|
||||
<td align="left" class="line1" ><input type="text" name="ViewMessageCharacterLimit" size="16" maxlength="12" value="{ViewMessageCharacterLimit}" {DISABLE_GLOBALEDIT_FORMCONTROL} class="maxwidth"></td>
|
||||
<!-- IF ENABLEUSEROPTIONS="true" -->
|
||||
<td align="left" class="line1" ><input type="text" name="User_ViewMessageCharacterLimit" size="16" maxlength="12" value="{User_ViewMessageCharacterLimit}"></td>
|
||||
<td align="left" class="line1" ><input type="text" name="User_ViewMessageCharacterLimit" size="16" maxlength="12" value="{User_ViewMessageCharacterLimit}" class="maxwidth"></td>
|
||||
<!-- ENDIF ENABLEUSEROPTIONS="true" -->
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" nowrap><b>{LN_GEN_STRCHARLIMIT}</b></td>
|
||||
<td align="left" class="line1" ><input type="text" name="ViewStringCharacterLimit" size="16" maxlength="12" value="{ViewStringCharacterLimit}" {DISABLE_GLOBALEDIT_FORMCONTROL}></td>
|
||||
<td align="left" class="line1" ><input type="text" name="ViewStringCharacterLimit" size="16" maxlength="12" value="{ViewStringCharacterLimit}" {DISABLE_GLOBALEDIT_FORMCONTROL} class="maxwidth"></td>
|
||||
<!-- IF ENABLEUSEROPTIONS="true" -->
|
||||
<td align="left" class="line1" ><input type="text" name="User_ViewStringCharacterLimit" size="16" maxlength="12" value="{User_ViewStringCharacterLimit}"></td>
|
||||
<td align="left" class="line1" ><input type="text" name="User_ViewStringCharacterLimit" size="16" maxlength="12" value="{User_ViewStringCharacterLimit}" class="maxwidth"></td>
|
||||
<!-- ENDIF ENABLEUSEROPTIONS="true" -->
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" nowrap><b>{LN_GEN_ENTRIESPERPAGE}</b></td>
|
||||
<td align="left" class="line1" ><input type="text" name="ViewEntriesPerPage" size="16" maxlength="12" value="{ViewEntriesPerPage}" {DISABLE_GLOBALEDIT_FORMCONTROL}></td>
|
||||
<td align="left" class="line1" ><input type="text" name="ViewEntriesPerPage" size="16" maxlength="12" value="{ViewEntriesPerPage}" {DISABLE_GLOBALEDIT_FORMCONTROL} class="maxwidth"></td>
|
||||
<!-- IF ENABLEUSEROPTIONS="true" -->
|
||||
<td align="left" class="line1" ><input type="text" name="User_ViewEntriesPerPage" size="16" maxlength="12" value="{User_ViewEntriesPerPage}"></td>
|
||||
<td align="left" class="line1" ><input type="text" name="User_ViewEntriesPerPage" size="16" maxlength="12" value="{User_ViewEntriesPerPage}" class="maxwidth"></td>
|
||||
<!-- ENDIF ENABLEUSEROPTIONS="true" -->
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" nowrap><b>{LN_GEN_AUTORELOADSECONDS}</b></td>
|
||||
<td align="left" class="line1" ><input type="text" name="ViewEnableAutoReloadSeconds" size="16" maxlength="12" value="{ViewEnableAutoReloadSeconds}" {DISABLE_GLOBALEDIT_FORMCONTROL}></td>
|
||||
<td align="left" class="line1" ><input type="text" name="ViewEnableAutoReloadSeconds" size="16" maxlength="12" value="{ViewEnableAutoReloadSeconds}" {DISABLE_GLOBALEDIT_FORMCONTROL} class="maxwidth"></td>
|
||||
<!-- IF ENABLEUSEROPTIONS="true" -->
|
||||
<td align="left" class="line1" ><input type="text" name="User_ViewEnableAutoReloadSeconds" size="16" maxlength="12" value="{User_ViewEnableAutoReloadSeconds}"></td>
|
||||
<td align="left" class="line1" ><input type="text" name="User_ViewEnableAutoReloadSeconds" size="16" maxlength="12" value="{User_ViewEnableAutoReloadSeconds}" class="maxwidth"></td>
|
||||
<!-- ENDIF ENABLEUSEROPTIONS="true" -->
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" nowrap><b>{LN_GEN_ADMINCHANGEWAITTIME}</b></td>
|
||||
<td align="left" class="line1" ><input type="text" name="AdminChangeWaitTime" size="16" maxlength="12" value="{AdminChangeWaitTime}" {DISABLE_GLOBALEDIT_FORMCONTROL}></td>
|
||||
<td align="left" class="line1" ><input type="text" name="AdminChangeWaitTime" size="16" maxlength="12" value="{AdminChangeWaitTime}" {DISABLE_GLOBALEDIT_FORMCONTROL} class="maxwidth"></td>
|
||||
<!-- IF ENABLEUSEROPTIONS="true" -->
|
||||
<td align="left" class="line1" ><input type="text" name="User_AdminChangeWaitTime" size="16" maxlength="12" value="{User_AdminChangeWaitTime}"></td>
|
||||
<td align="left" class="line1" ><input type="text" name="User_AdminChangeWaitTime" size="16" maxlength="12" value="{User_AdminChangeWaitTime}" class="maxwidth"></td>
|
||||
<!-- ENDIF ENABLEUSEROPTIONS="true" -->
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" nowrap><b>{LN_GEN_POPUPMENUTIMEOUT}</b></td>
|
||||
<td align="left" class="line1" ><input type="text" name="PopupMenuTimeout" size="16" maxlength="12" value="{PopupMenuTimeout}" {DISABLE_GLOBALEDIT_FORMCONTROL}></td>
|
||||
<td align="left" class="line1" ><input type="text" name="PopupMenuTimeout" size="16" maxlength="12" value="{PopupMenuTimeout}" {DISABLE_GLOBALEDIT_FORMCONTROL} class="maxwidth"></td>
|
||||
<!-- IF ENABLEUSEROPTIONS="true" -->
|
||||
<td align="left" class="line1" ><input type="text" name="User_PopupMenuTimeout" size="16" maxlength="12" value="{User_PopupMenuTimeout}"></td>
|
||||
<td align="left" class="line1" ><input type="text" name="User_PopupMenuTimeout" size="16" maxlength="12" value="{User_PopupMenuTimeout}" class="maxwidth"></td>
|
||||
<!-- ENDIF ENABLEUSEROPTIONS="true" -->
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" nowrap><b>{LN_GEN_CUSTBTNCAPT}</b></td>
|
||||
<td align="left" class="line1" ><input type="text" name="SearchCustomButtonCaption" size="35" maxlength="255" value="{SearchCustomButtonCaption}" {DISABLE_GLOBALEDIT_FORMCONTROL}></td>
|
||||
<td align="left" class="line1" ><input type="text" name="SearchCustomButtonCaption" size="35" maxlength="255" value="{SearchCustomButtonCaption}" {DISABLE_GLOBALEDIT_FORMCONTROL} class="maxwidth"></td>
|
||||
<!-- IF ENABLEUSEROPTIONS="true" -->
|
||||
<td align="left" class="line1" ><input type="text" name="User_SearchCustomButtonCaption" size="35" maxlength="255" value="{User_SearchCustomButtonCaption}"></td>
|
||||
<td align="left" class="line1" ><input type="text" name="User_SearchCustomButtonCaption" size="35" maxlength="255" value="{User_SearchCustomButtonCaption}" class="maxwidth"></td>
|
||||
<!-- ENDIF ENABLEUSEROPTIONS="true" -->
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" nowrap><b>{LN_GEN_CUSTBTNSRCH}</b></td>
|
||||
<td align="left" class="line1" ><input type="text" name="SearchCustomButtonSearch" size="35" maxlength="255" value="{SearchCustomButtonSearch}" {DISABLE_GLOBALEDIT_FORMCONTROL}></td>
|
||||
<td align="left" class="line1" ><input type="text" name="SearchCustomButtonSearch" size="35" maxlength="255" value="{SearchCustomButtonSearch}" {DISABLE_GLOBALEDIT_FORMCONTROL} class="maxwidth"></td>
|
||||
<!-- IF ENABLEUSEROPTIONS="true" -->
|
||||
<td align="left" class="line1" ><input type="text" name="User_SearchCustomButtonSearch" size="35" maxlength="255" value="{User_SearchCustomButtonSearch}"></td>
|
||||
<td align="left" class="line1" ><input type="text" name="User_SearchCustomButtonSearch" size="35" maxlength="255" value="{User_SearchCustomButtonSearch}" class="maxwidth"></td>
|
||||
<!-- ENDIF ENABLEUSEROPTIONS="true" -->
|
||||
</tr>
|
||||
<tr>
|
||||
@ -316,15 +316,15 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2"><b>{LN_ADMIN_SCRIPTTIMEOUT}</b></td>
|
||||
<td align="left" class="line1" colspan="2"><input type="text" name="MiscMaxExecutionTime" size="16" maxlength="12" value="{MiscMaxExecutionTime}" {DISABLE_GLOBALEDIT_FORMCONTROL}></td>
|
||||
<td align="left" class="line1" colspan="2"><input type="text" name="MiscMaxExecutionTime" size="16" maxlength="12" value="{MiscMaxExecutionTime}" {DISABLE_GLOBALEDIT_FORMCONTROL} class="maxwidth"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2_naked"><b>{LN_ADMIN_PHPLOGCON_LOGOURL}</b></td>
|
||||
<td align="left" class="line2" colspan="2"><input type="text" name="PhplogconLogoUrl" size="85" maxlength="255" value="{PhplogconLogoUrl}" {DISABLE_GLOBALEDIT_FORMCONTROL}></td>
|
||||
<td align="left" class="line2" colspan="2"><input type="text" name="PhplogconLogoUrl" size="85" maxlength="255" value="{PhplogconLogoUrl}" {DISABLE_GLOBALEDIT_FORMCONTROL} class="maxwidth"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2_naked"><b>{LN_ADMIN_USEPROXYSERVER}</b></td>
|
||||
<td align="left" class="line1" colspan="2"><input type="text" name="UseProxyServerForRemoteQueries" size="85" maxlength="255" value="{UseProxyServerForRemoteQueries}" {DISABLE_GLOBALEDIT_FORMCONTROL}></td>
|
||||
<td align="left" class="line1" colspan="2"><input type="text" name="UseProxyServerForRemoteQueries" size="85" maxlength="255" value="{UseProxyServerForRemoteQueries}" {DISABLE_GLOBALEDIT_FORMCONTROL} class="maxwidth"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2"><b>{LN_ADMIN_DEFAULTENCODING}</b></td>
|
||||
@ -347,15 +347,15 @@
|
||||
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2_naked" valign="_top"><b>{LN_GEN_INJECTHTMLHEADER}</b></td>
|
||||
<td align="left" class="line2" colspan="2"><textarea name="InjectHtmlHeader" cols="85" rows="3" {DISABLE_GLOBALEDIT_FORMCONTROL}>{InjectHtmlHeader}</textarea></td>
|
||||
<td align="left" class="line2" colspan="2"><textarea name="InjectHtmlHeader" cols="85" rows="3" {DISABLE_GLOBALEDIT_FORMCONTROL} class="maxwidth">{InjectHtmlHeader}</textarea></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2_naked" valign="_top"><b>{LN_GEN_INJECTBODYHEADER}</b></td>
|
||||
<td align="left" class="line1" colspan="2"><textarea name="InjectBodyHeader" cols="85" rows="3" {DISABLE_GLOBALEDIT_FORMCONTROL}>{InjectBodyHeader}</textarea></td>
|
||||
<td align="left" class="line1" colspan="2"><textarea name="InjectBodyHeader" cols="85" rows="3" {DISABLE_GLOBALEDIT_FORMCONTROL} class="maxwidth">{InjectBodyHeader}</textarea></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2_naked" valign="_top"><b>{LN_GEN_INJECTBODYFOOTER}</b></td>
|
||||
<td align="left" class="line2" colspan="2"><textarea name="InjectBodyFooter" cols="85" rows="3" {DISABLE_GLOBALEDIT_FORMCONTROL}>{InjectBodyFooter}</textarea></td>
|
||||
<td align="left" class="line2" colspan="2"><textarea name="InjectBodyFooter" cols="85" rows="3" {DISABLE_GLOBALEDIT_FORMCONTROL} class="maxwidth">{InjectBodyFooter}</textarea></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<tr>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<!-- IF ISERROR="true" -->
|
||||
<br><br>
|
||||
<center>
|
||||
<div class="table_with_border_second ErrorMsg" style="width:600px">
|
||||
<div class="table_with_border_second ErrorMsg" style="width:80%">
|
||||
<div class="PriorityError">{LN_GEN_ERRORDETAILS}</div>
|
||||
<p>{ERROR_MSG}</p>
|
||||
</div>
|
||||
@ -21,22 +21,21 @@
|
||||
<td align="center" class="line2">
|
||||
<br><br>
|
||||
|
||||
<table border="0" cellpadding="2" cellspacing="0" bgcolor="#DDDDDD" width="775" class="with_border_alternate">
|
||||
<table border="0" cellpadding="2" cellspacing="0" bgcolor="#DDDDDD" width="80%" class="with_border_alternate">
|
||||
<tr>
|
||||
<td class="topmenu2begin" nowrap align="center" width="16"><img align="left" src="{MENU_BULLET_YELLOW}" width="16" height="16" vspace="0"></td>
|
||||
<td class="topmenu2" nowrap align="center" width="200"><a class="topmenu1_link" href="{BASEPATH}admin/parsers.php" target="_top"><img align="left" src="{MENU_DOCUMENTLIST}" width="16" height="16" vspace="0" title="{LN_PARSERSMENU_LIST}">{LN_PARSERSMENU_LIST}</a></td>
|
||||
<td class="topmenu2" nowrap align="center" width="150"><a class="topmenu1_link" href="http://loganalyzer.adiscon.com/plugins/message-parsers" target="_blank"><img align="left" src="{MENU_NETDOWNLOAD}" width="16" height="16" vspace="0" title="{LN_PARSERS_ONLINELIST}">{LN_PARSERS_ONLINELIST}</a></td>
|
||||
<td class="topmenu2end" nowrap align="center" width="max"> </td>
|
||||
<td class="topmenu2begin" nowrap align="center" width="10%"><img align="left" src="{MENU_BULLET_YELLOW}" width="16" height="16" vspace="0"></td>
|
||||
<td class="topmenu2" nowrap align="center" width="45%"><a class="topmenu1_link" href="{BASEPATH}admin/parsers.php" target="_top"><img align="left" src="{MENU_DOCUMENTLIST}" width="16" height="16" vspace="0" title="{LN_PARSERSMENU_LIST}">{LN_PARSERSMENU_LIST}</a></td>
|
||||
<td class="topmenu2" nowrap align="center" width="45%"><a class="topmenu1_link" href="http://loganalyzer.adiscon.com/plugins/message-parsers" target="_blank"><img align="left" src="{MENU_NETDOWNLOAD}" width="16" height="16" vspace="0" title="{LN_PARSERS_ONLINELIST}">{LN_PARSERS_ONLINELIST}</a></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<!-- IF LISTPARSERS="true" -->
|
||||
<table border="0" cellpadding="2" cellspacing="1" bgcolor="#DDDDDD" width="775" class="with_border_alternate">
|
||||
<table border="0" cellpadding="2" cellspacing="1" bgcolor="#DDDDDD" width="80%" class="with_border_alternate">
|
||||
<tr>
|
||||
<td align="center" width="100" class="cellmenu1"><b>{LN_PARSERS_ID}</b></td>
|
||||
<td align="center" width="200" class="cellmenu1"><b>{LN_PARSERS_NAME}</b></td>
|
||||
<td align="center" width="300" class="cellmenu1"><b>{LN_PARSERS_DESCRIPTION}</b></td>
|
||||
<td align="center" width="125" class="cellmenu1" colspan="3" nowrap><b>{LN_GEN_ACTIONS}</b></td>
|
||||
<td align="center" width="20%" class="cellmenu1"><b>{LN_PARSERS_ID}</b></td>
|
||||
<td align="center" width="20%" class="cellmenu1"><b>{LN_PARSERS_NAME}</b></td>
|
||||
<td align="center" width="40%" class="cellmenu1"><b>{LN_PARSERS_DESCRIPTION}</b></td>
|
||||
<td align="center" width="20%" class="cellmenu1" colspan="3" nowrap><b>{LN_GEN_ACTIONS}</b></td>
|
||||
</tr>
|
||||
<!-- BEGIN PARSERS -->
|
||||
<tr>
|
||||
@ -65,20 +64,20 @@
|
||||
<!-- ENDIF LISTPARSERS="true" -->
|
||||
|
||||
<!-- IF ISSHOWDETAILS="true" -->
|
||||
<table border="0" cellpadding="1" cellspacing="1" bgcolor="#DDDDDD" width="600" class="with_border_alternate">
|
||||
<table border="0" cellpadding="1" cellspacing="1" bgcolor="#DDDDDD" width="80%" class="with_border_alternate">
|
||||
<tr>
|
||||
<td align="center" class="cellmenu1" colspan="2"><b>{LN_PARSERS_DETAILS}</b></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" width="250"><b>{LN_PARSERS_ID}</b></td>
|
||||
<td align="left" class="line1" width="350">{ParserID}</td>
|
||||
<td align="left" class="cellmenu2" width="30%"><b>{LN_PARSERS_ID}</b></td>
|
||||
<td align="left" class="line1" width="70%">{ParserID}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2"><b>{LN_PARSERS_NAME}</b></td>
|
||||
<td align="left" class="line2">{DisplayName}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2_naked" valign="top"><b>{LN_PARSERS_DESCRIPTION}</b></td>
|
||||
<td align="left" class="cellmenu2" valign="top"><b>{LN_PARSERS_DESCRIPTION}</b></td>
|
||||
<td align="left" class="line1">{Description}</td>
|
||||
</tr>
|
||||
<!-- IF EnableCustomField="true" -->
|
||||
|
@ -3,7 +3,7 @@
|
||||
<!-- IF ISERROR="true" -->
|
||||
<br><br>
|
||||
<center>
|
||||
<div class="table_with_border_second ErrorMsg" style="width:600px">
|
||||
<div class="table_with_border_second ErrorMsg" style="width:80%">
|
||||
<div class="PriorityError">{LN_GEN_ERRORDETAILS}</div>
|
||||
<p align="left">{ERROR_MSG}</p>
|
||||
</div>
|
||||
@ -21,25 +21,27 @@
|
||||
<td align="center" class="line2">
|
||||
<br><br>
|
||||
|
||||
<table border="0" cellpadding="2" cellspacing="0" bgcolor="#DDDDDD" width="775" class="with_border_alternate">
|
||||
<table border="0" cellpadding="2" cellspacing="0" bgcolor="#DDDDDD" width="80%" class="with_border_alternate">
|
||||
<tr>
|
||||
<td class="topmenu2begin" nowrap align="center" width="16"><img align="left" src="{MENU_BULLET_YELLOW}" width="16" height="16" vspace="0"></td>
|
||||
<td class="topmenu2" nowrap align="center" width="150"><a class="topmenu1_link" href="{BASEPATH}admin/reports.php" target="_top"><img align="left" src="{MENU_DOCUMENTLIST}" width="16" height="16" vspace="0" title="{LN_REPORTMENU_LIST}">{LN_REPORTMENU_LIST}</a></td>
|
||||
<td class="topmenu2" nowrap align="center" width="150"><a class="topmenu1_link" href="http://loganalyzer.adiscon.com/plugins/reports" target="_blank"><img align="left" src="{MENU_NETDOWNLOAD}" width="16" height="16" vspace="0" title="{LN_REPORTMENU_ONLINELIST}">{LN_REPORTMENU_ONLINELIST}</a></td>
|
||||
<td class="topmenu2begin" nowrap align="center" width="10%"><img align="left" src="{MENU_BULLET_YELLOW}" width="16" height="16" vspace="0"></td>
|
||||
<td class="topmenu2" nowrap align="center" width="25%"><a class="topmenu1_link" href="{BASEPATH}admin/reports.php" target="_top"><img align="left" src="{MENU_DOCUMENTLIST}" width="16" height="16" vspace="0" title="{LN_REPORTMENU_LIST}">{LN_REPORTMENU_LIST}</a></td>
|
||||
<td class="topmenu2" nowrap align="center" width="25%"><a class="topmenu1_link" href="http://loganalyzer.adiscon.com/plugins/reports" target="_blank"><img align="left" src="{MENU_NETDOWNLOAD}" width="16" height="16" vspace="0" title="{LN_REPORTMENU_ONLINELIST}">{LN_REPORTMENU_ONLINELIST}</a></td>
|
||||
<!-- IF ISADDSAVEDREPORT="true" -->
|
||||
<td class="topmenu2" nowrap align="center" width="250"><a class="topmenu1_link" href="{BASEPATH}admin/reports.php?op=details&id={ReportID}" target="_top"><img align="left" src="{MENU_VIEW}" width="16" height="16" vspace="0" title="{REPORTS_DETAILSFOR}">{REPORTS_DETAILSFOR}</a></td>
|
||||
<td class="topmenu2" nowrap align="center" width="40%"><a class="topmenu1_link" href="{BASEPATH}admin/reports.php?op=details&id={ReportID}" target="_top"><img align="left" src="{MENU_VIEW}" width="16" height="16" vspace="0" title="{REPORTS_DETAILSFOR}">{REPORTS_DETAILSFOR}</a></td>
|
||||
<!-- ENDIF ISADDSAVEDREPORT="true" -->
|
||||
<td class="topmenu2end" nowrap align="center" width="max"> </td>
|
||||
<!-- IF ISADDSAVEDREPORT!="true" -->
|
||||
<td class="topmenu2" nowrap align="center" width="40%"> </td>
|
||||
<!-- ENDIF ISADDSAVEDREPORT!="true" -->
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<!-- IF LISTREPORTS="true" -->
|
||||
<table border="0" cellpadding="2" cellspacing="1" bgcolor="#DDDDDD" width="775" class="with_border_alternate">
|
||||
<table border="0" cellpadding="2" cellspacing="1" bgcolor="#DDDDDD" width="80%" class="with_border_alternate">
|
||||
<tr>
|
||||
<td align="center" width="100" class="cellmenu1"><b>{LN_REPORTS_ID}</b></td>
|
||||
<td align="center" width="200" class="cellmenu1"><b>{LN_REPORTS_NAME}</b></td>
|
||||
<td align="center" width="300" class="cellmenu1"><b>{LN_REPORTS_DESCRIPTION}</b></td>
|
||||
<td align="center" width="125" class="cellmenu1" nowrap><b>{LN_GEN_ACTIONS}</b></td>
|
||||
<td align="center" width="15%" class="cellmenu1"><b>{LN_REPORTS_ID}</b></td>
|
||||
<td align="center" width="25%" class="cellmenu1"><b>{LN_REPORTS_NAME}</b></td>
|
||||
<td align="center" width="40%" class="cellmenu1"><b>{LN_REPORTS_DESCRIPTION}</b></td>
|
||||
<td align="center" width="20%" class="cellmenu1" nowrap><b>{LN_GEN_ACTIONS}</b></td>
|
||||
</tr>
|
||||
<!-- BEGIN REPORTS -->
|
||||
<tr>
|
||||
@ -89,13 +91,13 @@
|
||||
<!-- ENDIF LISTREPORTS="true" -->
|
||||
|
||||
<!-- IF LISTONLINEREPORTS="true" -->
|
||||
<table border="0" cellpadding="2" cellspacing="1" bgcolor="#DDDDDD" width="775" class="with_border_alternate">
|
||||
<table border="0" cellpadding="2" cellspacing="1" bgcolor="#DDDDDD" width="80%" class="with_border_alternate">
|
||||
<tr>
|
||||
<td align="center" width="50" class="cellmenu1"><b>{LN_REPORTS_INSTALLED}</b></td>
|
||||
<td align="center" width="100" class="cellmenu1"><b>{LN_REPORTS_ID}</b></td>
|
||||
<td align="center" width="200" class="cellmenu1"><b>{LN_REPORTS_NAME}</b></td>
|
||||
<td align="center" width="300" class="cellmenu1"><b>{LN_REPORTS_DESCRIPTION}</b></td>
|
||||
<td align="center" width="125" class="cellmenu1" nowrap><b>{LN_REPORTS_LINKS}</b></td>
|
||||
<td align="center" width="5%" class="cellmenu1"><b>{LN_REPORTS_INSTALLED}</b></td>
|
||||
<td align="center" width="10%" class="cellmenu1"><b>{LN_REPORTS_ID}</b></td>
|
||||
<td align="center" width="25%" class="cellmenu1"><b>{LN_REPORTS_NAME}</b></td>
|
||||
<td align="center" width="40%" class="cellmenu1"><b>{LN_REPORTS_DESCRIPTION}</b></td>
|
||||
<td align="center" width="20%" class="cellmenu1" nowrap><b>{LN_REPORTS_LINKS}</b></td>
|
||||
</tr>
|
||||
<!-- BEGIN ONLINEREPORTS -->
|
||||
<tr>
|
||||
@ -127,17 +129,17 @@
|
||||
<!-- ENDIF LISTONLINEREPORTS="true" -->
|
||||
|
||||
<!-- IF ISSHOWDETAILS="true" -->
|
||||
<table border="0" cellpadding="2" cellspacing="1" bgcolor="#DDDDDD" width="775" class="with_border_alternate">
|
||||
<table border="0" cellpadding="2" cellspacing="1" bgcolor="#DDDDDD" width="80%" class="with_border_alternate">
|
||||
<tr>
|
||||
<td align="center" class="cellmenu1" colspan="3"><b>{LN_REPORTS_DETAILS}</b></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" width="250"><b>{LN_REPORTS_CAT}</b></td>
|
||||
<td align="left" class="line1" width="350" colspan="2">{Category}</td>
|
||||
<td align="left" class="cellmenu2" width="30%"><b>{LN_REPORTS_CAT}</b></td>
|
||||
<td align="left" class="line1" width="70%" colspan="2">{Category}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" width="250"><b>{LN_REPORTS_ID}</b></td>
|
||||
<td align="left" class="line1" width="350" colspan="2">{ReportID}</td>
|
||||
<td align="left" class="cellmenu2"><b>{LN_REPORTS_ID}</b></td>
|
||||
<td align="left" class="line1" colspan="2">{ReportID}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2"><b>{LN_REPORTS_NAME}</b></td>
|
||||
@ -267,11 +269,10 @@
|
||||
toggleformelement('filter_daterange_last_x_' + Fieldnumber, false);
|
||||
}
|
||||
}
|
||||
|
||||
</script>
|
||||
|
||||
<!-- IF ISSOURCENOTOPTIMIZED="true" -->
|
||||
<table width="775" cellpadding="2" cellspacing="1" border="0" align="center" class="with_border_alternate">
|
||||
<table width="80%" cellpadding="2" cellspacing="1" border="0" align="center" class="with_border_alternate">
|
||||
<tr>
|
||||
<td align="center" valign="top" class="line1 ErrorMsg">
|
||||
<div class="{MSG_WARNING_CLASS}">{MSG_WARNING_TITLE}</div>
|
||||
@ -304,65 +305,65 @@
|
||||
<input type="hidden" name="id" value="{ReportID}">
|
||||
<input type="hidden" name="savedreportid" value="{SavedReportID}">
|
||||
<!-- <input type="hidden" name="op" value="addsavedreport">-->
|
||||
<table border="0" cellpadding="2" cellspacing="1" bgcolor="#DDDDDD" width="775" class="with_border_alternate">
|
||||
<table border="0" cellpadding="2" cellspacing="1" bgcolor="#DDDDDD" width="80%" class="with_border_alternate">
|
||||
<tr>
|
||||
<td align="center" class="cellmenu1" colspan="2"><b>{LN_REPORTS_ADDSAVEDREPORT}: '{DisplayName}'</b></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" width="150" nowrap><b>{LN_REPORTS_CUSTOMTITLE}</b></td>
|
||||
<td align="left" class="line1" width="100%"><input type="text" name="report_customtitle" size="80" maxlength="255" value="{customTitle}"></td>
|
||||
<td align="left" class="cellmenu2" width="30%" nowrap><b>{LN_REPORTS_CUSTOMTITLE}</b></td>
|
||||
<td align="left" class="line1" width="70%"><input type="text" name="report_customtitle" size="80" maxlength="255" value="{customTitle}" class="maxwidth"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" width="150" nowrap><b>{LN_REPORTS_CUSTOMCOMMENT}</b></td>
|
||||
<td align="left" class="line2" width="100%"><input type="text" name="report_customcomment" size="80" maxlength="255" value="{customComment}"></td>
|
||||
<td align="left" class="cellmenu2" nowrap><b>{LN_REPORTS_CUSTOMCOMMENT}</b></td>
|
||||
<td align="left" class="line2"><input type="text" name="report_customcomment" size="80" maxlength="255" value="{customComment}" class="maxwidth"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2_naked" width="150" valign="top" nowrap><b>{LN_REPORTS_FILTERSTRING}</b></td>
|
||||
<td align="left" class="line1" width="100%"><font class="ErrorMsg">{LN_REPORTS_FILTERSTRING_ONLYEDITIF}</font></br><input type="text" name="report_filterString" size="100" maxlength="1024" value="{filterString_htmlform}"></td>
|
||||
<td align="left" class="cellmenu2_naked" valign="top" nowrap><b>{LN_REPORTS_FILTERSTRING}</b></td>
|
||||
<td align="left" class="line1"><font class="ErrorMsg">{LN_REPORTS_FILTERSTRING_ONLYEDITIF}</font></br><input type="text" name="report_filterString" size="100" maxlength="1024" value="{filterString_htmlform}" class="maxwidth"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2_naked" width="150" valign="top" nowrap><b>{LN_REPORTS_FILTEREDITOR}</b></td>
|
||||
<td align="left" class="line1" width="100%">
|
||||
<td align="left" class="cellmenu2_naked" valign="top" nowrap><b>{LN_REPORTS_FILTEREDITOR}</b></td>
|
||||
<td align="left" class="line1">
|
||||
|
||||
<table border="0" cellpadding="1" cellspacing="1" bgcolor="#DDDDDD" width="550" class="with_border_alternate">
|
||||
<table border="0" cellpadding="1" cellspacing="1" bgcolor="#DDDDDD" width="100%" class="with_border_alternate">
|
||||
<tr>
|
||||
<td align="center" class="cellmenu1" colspan="4"><b>{LN_REPORTS_FILTERLIST}</b></td>
|
||||
</tr>
|
||||
<!-- BEGIN SUBFILTERS -->
|
||||
<tr>
|
||||
<td align="left" class="{colcssclass}" width="200">
|
||||
<td align="left" class="{colcssclass}" width="35%">
|
||||
<input type="hidden" name="Filters[]" value="{FilterFieldID}">
|
||||
<b>{FilterFieldName} (<I>{FilterFieldID}</I>)</b>
|
||||
</td>
|
||||
<td align="left" class="{colcssclass}" width="100">
|
||||
<select name="newcomparison_{ROWCNT}" size="1" STYLE="width: 100px" OnChange="toggleDatefiltervisibility('savedreportform', {ROWCNT});">
|
||||
<td align="left" class="{colcssclass}" width="15%">
|
||||
<select name="newcomparison_{ROWCNT}" size="1" class="maxwidth" OnChange="toggleDatefiltervisibility('savedreportform', {ROWCNT});">
|
||||
<!-- BEGIN Comparisons -->
|
||||
<option value="{ComparisonBit}" {cp_selected}>{ComparisonCaption}</option>
|
||||
<!-- END Comparisons -->
|
||||
</select>
|
||||
</td>
|
||||
<td align="left" class="{colcssclass}" width="200">
|
||||
<td align="left" class="{colcssclass}" width="40%">
|
||||
<!-- IF FilterType!="2" -->
|
||||
<input type="text" name="FilterValue_{ROWCNT}" size="32" maxlength="255" value="{FilterValue}">
|
||||
<input type="text" name="FilterValue_{ROWCNT}" size="32" maxlength="255" value="{FilterValue}" class="maxwidth">
|
||||
<!-- ENDIF FilterType!="2" -->
|
||||
<!-- IF FilterType="2" -->
|
||||
<div id="HiddenDateDetailsOptions_{ROWCNT}" class="HiddenContent">
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="100%" align="center">
|
||||
<tr>
|
||||
<td align="left" width="100%">
|
||||
<select name="filter_daterange_year_{ROWCNT}" size="1" STYLE="width: 60px">
|
||||
<select name="filter_daterange_year_{ROWCNT}" size="1" STYLE="width: 30%">
|
||||
<!-- BEGIN filter_daterange_year_list -->
|
||||
<option {selected} value="{value}">{value}</option>
|
||||
<!-- END filter_daterange_year_list -->
|
||||
</select>
|
||||
-
|
||||
<select name="filter_daterange_month_{ROWCNT}" size="1" STYLE="width: 50px">
|
||||
<select name="filter_daterange_month_{ROWCNT}" size="1" STYLE="width: 30%">
|
||||
<!-- BEGIN filter_daterange_month_list -->
|
||||
<option {selected} value="{value}">{value}</option>
|
||||
<!-- END filter_daterange_month_list -->
|
||||
</select>
|
||||
-
|
||||
<select name="filter_daterange_day_{ROWCNT}" size="1" STYLE="width: 50px">
|
||||
<select name="filter_daterange_day_{ROWCNT}" size="1" STYLE="width: 30%">
|
||||
<!-- BEGIN filter_daterange_day_list -->
|
||||
<option {selected} value="{value}">{value}</option>
|
||||
<!-- END filter_daterange_day_list -->
|
||||
@ -371,19 +372,19 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" width="100%">
|
||||
<select name="filter_daterange_hour_{ROWCNT}" size="1" STYLE="width: 60px">
|
||||
<select name="filter_daterange_hour_{ROWCNT}" size="1" STYLE="width: 30%">
|
||||
<!-- BEGIN filter_daterange_hour_list -->
|
||||
<option {selected} value="{value}">{value}</option>
|
||||
<!-- END filter_daterange_hour_list -->
|
||||
</select>
|
||||
-
|
||||
<select name="filter_daterange_minute_{ROWCNT}" size="1" STYLE="width: 50px">
|
||||
<select name="filter_daterange_minute_{ROWCNT}" size="1" STYLE="width: 30%">
|
||||
<!-- BEGIN filter_daterange_minute_list -->
|
||||
<option {selected} value="{value}">{value}</option>
|
||||
<!-- END filter_daterange_minute_list -->
|
||||
</select>
|
||||
-
|
||||
<select name="filter_daterange_second_{ROWCNT}" size="1" STYLE="width: 50px">
|
||||
<select name="filter_daterange_second_{ROWCNT}" size="1" STYLE="width: 30%">
|
||||
<!-- BEGIN filter_daterange_second_list -->
|
||||
<option {selected} value="{value}">{value}</option>
|
||||
<!-- END filter_daterange_second_list -->
|
||||
@ -397,7 +398,7 @@
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="100%" align="center">
|
||||
<tr>
|
||||
<td align="left" width="100%">
|
||||
<select name="filter_daterange_last_x_{ROWCNT}" size="1">
|
||||
<select name="filter_daterange_last_x_{ROWCNT}" size="1" class="maxwidth">
|
||||
<!-- BEGIN MyFilter_daterange_last_x_list -->
|
||||
<option {selected} value="{LastXID}">{LastXDisplayName}</option>
|
||||
<!-- END MyFilter_daterange_last_x_list -->
|
||||
@ -413,7 +414,7 @@
|
||||
</script>
|
||||
<!-- ENDIF FilterType="2" -->
|
||||
</td>
|
||||
<td align="center" class="{colcssclass}" width="50">
|
||||
<td align="center" class="{colcssclass}" width="10%">
|
||||
<button name="subop_edit" type="submit" value="{ROWCNT}" class="borderlessbuttons" title="{LN_REPORTS_FILTER_EDIT}"><img src="{MENU_EDIT}" width="16" alt="{LN_REPORTS_FILTER_EDIT}"></button>
|
||||
<button name="subop_delete" type="submit" value="{ROWCNT}" class="borderlessbuttons" title="{LN_REPORTS_FILTER_REMOVE}"><img src="{MENU_DELETE}" width="16" alt="{LN_REPORTS_FILTER_REMOVE}"></button>
|
||||
</td>
|
||||
@ -422,7 +423,7 @@
|
||||
<tr>
|
||||
<td align="center" class="line2" colspan="4">
|
||||
|
||||
<select name="newfilter" size="1" STYLE="width: 200px">
|
||||
<select name="newfilter" size="1" class="maxwidth">
|
||||
<!-- BEGIN FIELDS -->
|
||||
<option value="{FieldID}" {group_selected}>{FieldCaption}</option>
|
||||
<!-- END FIELDS -->
|
||||
@ -435,21 +436,21 @@
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2_naked" width="150" valign="top" nowrap><b>{LN_REPORTS_ADVANCEDFILTERS}</b></td>
|
||||
<td align="left" class="line1" width="100%">
|
||||
<td align="left" class="cellmenu2_naked" valign="top" nowrap><b>{LN_REPORTS_ADVANCEDFILTERS}</b></td>
|
||||
<td align="left" class="line1">
|
||||
|
||||
<table border="0" cellpadding="1" cellspacing="1" bgcolor="#DDDDDD" width="550" class="with_border_alternate">
|
||||
<table border="0" cellpadding="1" cellspacing="1" bgcolor="#DDDDDD" width="100%" class="with_border_alternate">
|
||||
<tr>
|
||||
<td align="center" class="cellmenu1" colspan="4"><b>{LN_REPORTS_ADVANCEDFILTERLIST}</b></td>
|
||||
</tr>
|
||||
<!-- BEGIN CUSTOMFILTERS -->
|
||||
<tr>
|
||||
<!-- IF filtertype="1" -->
|
||||
<td align="left" class="{colcssclass}" width="400">
|
||||
<td align="left" class="{colcssclass}" width="70%">
|
||||
<b>{fieldcaption}</b><br/>(<I>{fielddescription}</I>)
|
||||
</td>
|
||||
<td align="left" class="{colcssclass}" width="150">
|
||||
<input type="text" name="{fieldname}" size="30" maxlength="255" value="{fieldvalue}">
|
||||
<td align="left" class="{colcssclass}" width="30%">
|
||||
<input type="text" name="{fieldname}" size="30" maxlength="255" value="{fieldvalue}" class="maxwidth">
|
||||
</td>
|
||||
<!-- ENDIF filtertype="1" -->
|
||||
<!-- IF filtertype="3" -->
|
||||
@ -465,9 +466,9 @@
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" width="150" nowrap><b>{LN_REPORTS_SOURCEID}</b></td>
|
||||
<td align="left" class="line2" width="100%">
|
||||
<select name="SourceID" size="1" STYLE="width: 415px">
|
||||
<td align="left" class="cellmenu2" nowrap><b>{LN_REPORTS_SOURCEID}</b></td>
|
||||
<td align="left" class="line2">
|
||||
<select name="SourceID" size="1" class="maxwidth">
|
||||
<!-- BEGIN SOURCES -->
|
||||
<option value="{SourceID}" {sourceselected}>{Name}</option>
|
||||
<!-- END SOURCES -->
|
||||
@ -477,9 +478,9 @@
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" width="150" nowrap><b>{LN_REPORTS_OUTPUTFORMAT}</b></td>
|
||||
<td align="left" class="line1" width="100%">
|
||||
<select name="outputFormat" size="1" STYLE="width: 415px">
|
||||
<td align="left" class="cellmenu2" nowrap><b>{LN_REPORTS_OUTPUTFORMAT}</b></td>
|
||||
<td align="left" class="line1">
|
||||
<select name="outputFormat" size="1" class="maxwidth">
|
||||
<!-- BEGIN OUTPUTFORMATS -->
|
||||
<option value="{formatid}" {formatselected}>{formatdisplayname}</option>
|
||||
<!-- END OUTPUTFORMATS -->
|
||||
@ -487,9 +488,9 @@
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" width="150" nowrap><b>{LN_REPORTS_OUTPUTTARGET}</b></td>
|
||||
<td align="left" class="line1" width="100%">
|
||||
<select name="outputTarget" size="1" STYLE="width: 415px" OnChange="toggleOutputtargetvisibility('savedreportform');">
|
||||
<td align="left" class="cellmenu2" nowrap><b>{LN_REPORTS_OUTPUTTARGET}</b></td>
|
||||
<td align="left" class="line1">
|
||||
<select name="outputTarget" size="1" class="maxwidth" OnChange="toggleOutputtargetvisibility('savedreportform');">
|
||||
<!-- BEGIN OUTPUTTARGETS -->
|
||||
<option value="{targetid}" {targetselected}>{targetdisplayname}</option>
|
||||
<!-- END OUTPUTTARGETS -->
|
||||
@ -499,21 +500,21 @@
|
||||
</table>
|
||||
|
||||
<div id="HiddenOutputFormatFile" class="HiddenContent">
|
||||
<table border="0" cellpadding="2" cellspacing="1" bgcolor="#DDDDDD" width="775" class="with_border_alternate">
|
||||
<table border="0" cellpadding="2" cellspacing="1" bgcolor="#DDDDDD" width="80%" class="with_border_alternate">
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" width="150" valign="top" nowrap><b>{LN_REPORTS_OUTPUTTARGET_FILE}</b></td>
|
||||
<td align="left" class="line1" width="100%">
|
||||
<input type="text" name="outputTarget_filename" size="80" maxlength="1024" value="{outputTarget_filename}">
|
||||
<td align="left" class="cellmenu2" width="30%" valign="top" nowrap><b>{LN_REPORTS_OUTPUTTARGET_FILE}</b></td>
|
||||
<td align="left" class="line1" width="70%">
|
||||
<input type="text" name="outputTarget_filename" size="80" maxlength="1024" value="{outputTarget_filename}" class="maxwidth">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<table border="0" cellpadding="2" cellspacing="1" bgcolor="#DDDDDD" width="775" class="with_border_alternate">
|
||||
<table border="0" cellpadding="2" cellspacing="1" bgcolor="#DDDDDD" width="80%" class="with_border_alternate">
|
||||
<!-- IF enableCronCommand="true" -->
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2_naked" width="150" nowrap><b>{LN_REPORTS_CRONCMD}</b></td>
|
||||
<td align="left" class="line2" width="100%"><input readonly type="text" size="100" maxlength="255" value="{cronCommand}"></td>
|
||||
<td align="left" class="cellmenu2_naked" width="30%" nowrap><b>{LN_REPORTS_CRONCMD}</b></td>
|
||||
<td align="left" class="line2" width="70%"><input readonly type="text" size="100" maxlength="255" value="{cronCommand}" class="maxwidth"></td>
|
||||
</tr>
|
||||
<!-- ENDIF enableCronCommand="true" -->
|
||||
<tr>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<!-- IF ISERROR="true" -->
|
||||
<br><br>
|
||||
<center>
|
||||
<div class="table_with_border_second ErrorMsg" style="width:600px">
|
||||
<div class="table_with_border_second ErrorMsg" style="width:80%">
|
||||
<div class="PriorityError">{LN_GEN_ERRORDETAILS}</div>
|
||||
<p>{ERROR_MSG}</p>
|
||||
</div>
|
||||
@ -22,13 +22,13 @@
|
||||
<br><br>
|
||||
|
||||
<!-- IF LISTSEARCHES="true" -->
|
||||
<table border="0" cellpadding="2" cellspacing="1" bgcolor="#DDDDDD" width="750" class="with_border_alternate">
|
||||
<table border="0" cellpadding="2" cellspacing="1" bgcolor="#DDDDDD" width="80%" class="with_border_alternate">
|
||||
<tr>
|
||||
<td align="center" width="50" class="cellmenu1"><b>{LN_SEARCH_ID}</b></td>
|
||||
<td align="center" width="200" class="cellmenu1"><b>{LN_SEARCH_NAME}</b></td>
|
||||
<td align="center" width="200" class="cellmenu1"><b>{LN_SEARCH_QUERY}</b></td>
|
||||
<td align="center" width="150" class="cellmenu1"><b>{LN_SEARCH_TYPE}</b></td>
|
||||
<td align="center" width="150" class="cellmenu1"><b>{LN_GEN_ACTIONS}</b></td>
|
||||
<td align="center" width="5%" class="cellmenu1"><b>{LN_SEARCH_ID}</b></td>
|
||||
<td align="center" width="25%" class="cellmenu1"><b>{LN_SEARCH_NAME}</b></td>
|
||||
<td align="center" width="30%" class="cellmenu1"><b>{LN_SEARCH_QUERY}</b></td>
|
||||
<td align="center" width="20%" class="cellmenu1"><b>{LN_SEARCH_TYPE}</b></td>
|
||||
<td align="center" width="20%" class="cellmenu1"><b>{LN_GEN_ACTIONS}</b></td>
|
||||
</tr>
|
||||
<!-- BEGIN SEARCHES -->
|
||||
<tr>
|
||||
@ -64,17 +64,17 @@
|
||||
|
||||
<!-- IF ISEDITORNEWSEARCH="true" -->
|
||||
<form action="{BASEPATH}admin/searches.php" method="post">
|
||||
<table border="0" cellpadding="1" cellspacing="1" bgcolor="#DDDDDD" width="600" class="with_border_alternate">
|
||||
<table border="0" cellpadding="1" cellspacing="1" bgcolor="#DDDDDD" width="80%" class="with_border_alternate">
|
||||
<tr>
|
||||
<td align="center" class="cellmenu1" colspan="2"><b>{LN_SEARCH_ADDEDIT}</b></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" width="250"><b>{LN_SEARCH_NAME}</b></td>
|
||||
<td align="left" class="line1" width="350"><input type="text" name="DisplayName" size="55" maxlength="255" value="{DisplayName}"></td>
|
||||
<td align="left" class="cellmenu2" width="30%"><b>{LN_SEARCH_NAME}</b></td>
|
||||
<td align="left" class="line1" width="70%"><input type="text" name="DisplayName" size="55" maxlength="255" value="{DisplayName}" class="maxwidth"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2"><b>{LN_SEARCH_QUERY}</b></td>
|
||||
<td align="left" class="line2"><input type="text" name="SearchQuery" size="55" maxlength="1024" value="{SearchQuery}"></td>
|
||||
<td align="left" class="line2"><input type="text" name="SearchQuery" size="55" maxlength="1024" value="{SearchQuery}" class="maxwidth"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2"><b>{LN_GEN_USERONLY}</b></td>
|
||||
@ -84,7 +84,7 @@
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2"><b>{LN_GEN_GROUPONLY}</b></td>
|
||||
<td align="left" class="line2">
|
||||
<select name="groupid" size="1" STYLE="width: 300px" {READONLY_ISUSERONLY}>
|
||||
<select name="groupid" size="1" class="maxwidth" {READONLY_ISUSERONLY}>
|
||||
<!-- BEGIN SUBGROUPS -->
|
||||
<option value="{mygroupid}" {group_selected}>{groupname}</option>
|
||||
<!-- END SUBGROUPS -->
|
||||
|
@ -1,7 +1,7 @@
|
||||
<!-- INCLUDE include_header.html -->
|
||||
|
||||
<br><br>
|
||||
<table width="600" cellpadding="2" cellspacing="1" border="0" align="center" class="with_border">
|
||||
<table width="80%" cellpadding="2" cellspacing="1" border="0" align="center" class="with_border">
|
||||
<tr>
|
||||
<td align="center" valign="top" class="line0 ErrorMsg" colspan="2">{warningtext}</td>
|
||||
</tr>
|
||||
|
@ -42,7 +42,7 @@
|
||||
<!-- IF ISERROR="true" -->
|
||||
<br><br>
|
||||
<center>
|
||||
<div class="table_with_border_second ErrorMsg" style="width:600px">
|
||||
<div class="table_with_border_second ErrorMsg" style="width:80%">
|
||||
<div class="PriorityError">{LN_GEN_ERRORDETAILS}</div>
|
||||
<p>{ERROR_MSG}</p>
|
||||
</div>
|
||||
|
@ -21,9 +21,9 @@
|
||||
<td align="center" class="line2">
|
||||
|
||||
<!-- IF UPGRADE_DEFAULT="1" -->
|
||||
<table width="100%" cellpadding="5" cellspacing="1" border="0" align="center" class="with_border_alternate">
|
||||
<table width="80%" cellpadding="5" cellspacing="1" border="0" align="center">
|
||||
<tr>
|
||||
<td class="line1">
|
||||
<td>
|
||||
|
||||
<br><br>
|
||||
<h1>{LN_DBUPGRADE_WELCOME}</h1>
|
||||
@ -41,9 +41,9 @@
|
||||
<!-- ENDIF UPGRADE_DEFAULT="1" -->
|
||||
|
||||
<!-- IF UPGRADE_RUNNING="1" -->
|
||||
<table width="100%" cellpadding="5" cellspacing="1" border="0" align="center" class="with_border_alternate">
|
||||
<table width="80%" cellpadding="5" cellspacing="1" border="0" align="center">
|
||||
<tr>
|
||||
<td class="line1">
|
||||
<td>
|
||||
<br><br>
|
||||
<p>{LN_DBUPGRADE_HASBEENDONE}: <br><br>
|
||||
|
||||
@ -83,9 +83,9 @@
|
||||
<!-- ENDIF UPGRADE_RUNNING="1" -->
|
||||
|
||||
<!-- IF UPGRADE_DEFAULT="0" -->
|
||||
<table width="100%" cellpadding="5" cellspacing="1" border="0" align="center" class="with_border_alternate">
|
||||
<table width="80%" cellpadding="5" cellspacing="1" border="0" align="center">
|
||||
<tr>
|
||||
<td class="line1">
|
||||
<td>
|
||||
|
||||
<h1>Welcome to the Database Upgrade</h1>
|
||||
<center><h2><font color="blue">Your database is fully updated!</font></h2></center></p>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<!-- IF ISERROR="true" -->
|
||||
<br><br>
|
||||
<center>
|
||||
<div class="table_with_border_second ErrorMsg" style="width:600px">
|
||||
<div class="table_with_border_second ErrorMsg" style="width:80%">
|
||||
<div class="PriorityError">{LN_GEN_ERRORDETAILS}</div>
|
||||
<p>{ERROR_MSG}</p>
|
||||
</div>
|
||||
@ -22,13 +22,13 @@
|
||||
<br><br>
|
||||
|
||||
<!-- IF LISTUSERS="true" -->
|
||||
<table border="0" cellpadding="2" cellspacing="1" bgcolor="#DDDDDD" width="600" class="with_border_alternate">
|
||||
<table border="0" cellpadding="2" cellspacing="1" bgcolor="#DDDDDD" width="80%" class="with_border_alternate">
|
||||
<tr>
|
||||
<td align="center" width="50" class="cellmenu1"><b>{LN_USER_ID}</b></td>
|
||||
<td align="center" width="300" class="cellmenu1"><b>{LN_USER_NAME}</b></td>
|
||||
<td align="center" width="100" class="cellmenu1"><b>{LN_USER_ISADMIN}</b></td>
|
||||
<td align="center" width="100" class="cellmenu1"><b>{LN_USER_ISREADONLY}</b></td>
|
||||
<td align="center" width="200" class="cellmenu1"><b>{LN_GEN_ACTIONS}</b></td>
|
||||
<td align="center" width="10%" class="cellmenu1"><b>{LN_USER_ID}</b></td>
|
||||
<td align="center" width="40%" class="cellmenu1"><b>{LN_USER_NAME}</b></td>
|
||||
<td align="center" width="15%" class="cellmenu1"><b>{LN_USER_ISADMIN}</b></td>
|
||||
<td align="center" width="15%" class="cellmenu1"><b>{LN_USER_ISREADONLY}</b></td>
|
||||
<td align="center" width="20%" class="cellmenu1"><b>{LN_GEN_ACTIONS}</b></td>
|
||||
</tr>
|
||||
<!-- BEGIN USERS -->
|
||||
<tr>
|
||||
@ -52,21 +52,21 @@
|
||||
|
||||
<!-- IF ISEDITORNEWUSER="true" -->
|
||||
<form action="{BASEPATH}admin/users.php" method="post">
|
||||
<table border="0" cellpadding="1" cellspacing="1" bgcolor="#DDDDDD" width="600" class="with_border_alternate">
|
||||
<table border="0" cellpadding="1" cellspacing="1" bgcolor="#DDDDDD" width="80%" class="with_border_alternate">
|
||||
<tr>
|
||||
<td align="center" class="cellmenu1" colspan="2"><b>{LN_USER_ADDEDIT}</b></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" width="150" nowrap><b>{LN_USER_NAME}</b></td>
|
||||
<td align="left" class="line0" width="100%"><input type="text" name="username" size="40" maxlength="64" value="{USERNAME}"></td>
|
||||
<td align="left" class="cellmenu2" width="30%" nowrap><b>{LN_USER_NAME}</b></td>
|
||||
<td align="left" class="line0" width="70%"><input type="text" name="username" size="40" maxlength="64" value="{USERNAME}" class="maxwidth"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" nowrap><b>{LN_USER_PASSWORD1}</b></td>
|
||||
<td align="left" class="line1"><input type="password" name="password1" size="40" maxlength="64" value=""></td>
|
||||
<td align="left" class="line1"><input type="password" name="password1" size="40" maxlength="64" value="" class="maxwidth"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" nowrap><b>{LN_USER_PASSWORD2}</b></td>
|
||||
<td align="left" class="line0"><input type="password" name="password2" size="40" maxlength="64" value=""></td>
|
||||
<td align="left" class="line0"><input type="password" name="password2" size="40" maxlength="64" value="" class="maxwidth"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" nowrap><b>{LN_USER_ISADMIN}</b></td>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<!-- IF ISERROR="true" -->
|
||||
<br><br>
|
||||
<center>
|
||||
<div class="table_with_border_second ErrorMsg" style="width:600px">
|
||||
<div class="table_with_border_second ErrorMsg" style="width:80%">
|
||||
<div class="PriorityError">{LN_GEN_ERRORDETAILS}</div>
|
||||
<p>{ERROR_MSG}</p>
|
||||
</div>
|
||||
@ -22,13 +22,13 @@
|
||||
<br><br>
|
||||
|
||||
<!-- IF LISTVIEWS="true" -->
|
||||
<table border="0" cellpadding="2" cellspacing="1" bgcolor="#DDDDDD" width="750" class="with_border_alternate">
|
||||
<table border="0" cellpadding="2" cellspacing="1" bgcolor="#DDDDDD" width="80%" class="with_border_alternate">
|
||||
<tr>
|
||||
<td align="center" width="50" class="cellmenu1"><b>{LN_VIEWS_ID}</b></td>
|
||||
<td align="center" width="150" class="cellmenu1"><b>{LN_VIEWS_NAME}</b></td>
|
||||
<td align="center" width="275" class="cellmenu1"><b>{LN_VIEWS_COLUMNS}</b></td>
|
||||
<td align="center" width="150" class="cellmenu1"><b>{LN_VIEWS_TYPE}</b></td>
|
||||
<td align="center" width="125" class="cellmenu1"><b>{LN_GEN_ACTIONS}</b></td>
|
||||
<td align="center" width="10%" class="cellmenu1"><b>{LN_VIEWS_ID}</b></td>
|
||||
<td align="center" width="20%" class="cellmenu1"><b>{LN_VIEWS_NAME}</b></td>
|
||||
<td align="center" width="40%" class="cellmenu1"><b>{LN_VIEWS_COLUMNS}</b></td>
|
||||
<td align="center" width="15%" class="cellmenu1"><b>{LN_VIEWS_TYPE}</b></td>
|
||||
<td align="center" width="15%" class="cellmenu1"><b>{LN_GEN_ACTIONS}</b></td>
|
||||
</tr>
|
||||
<!-- BEGIN VIEWS -->
|
||||
<tr>
|
||||
@ -65,13 +65,13 @@
|
||||
|
||||
<!-- IF ISEDITORNEWVIEW="true" -->
|
||||
<form action="{BASEPATH}admin/views.php{FormUrlAddOP}" method="post">
|
||||
<table border="0" cellpadding="1" cellspacing="1" bgcolor="#DDDDDD" width="700" class="with_border_alternate">
|
||||
<table border="0" cellpadding="1" cellspacing="1" bgcolor="#DDDDDD" width="80%" class="with_border_alternate">
|
||||
<tr>
|
||||
<td align="center" class="cellmenu1" colspan="2"><b>{LN_VIEWS_ADDEDIT}</b></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" width="250"><b>{LN_VIEWS_NAME}</b></td>
|
||||
<td align="left" class="line1" width="350"><input type="text" name="DisplayName" size="55" maxlength="255" value="{DisplayName}"></td>
|
||||
<td align="left" class="cellmenu2" width="40%"><b>{LN_VIEWS_NAME}</b></td>
|
||||
<td align="left" class="line1" width="60%"><input type="text" name="DisplayName" size="55" maxlength="255" value="{DisplayName}" class="maxwidth"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2_naked"><b>{LN_GEN_USERONLY_LONG}</b></td>
|
||||
@ -81,7 +81,7 @@
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2_naked"><b>{LN_GEN_GROUPONLY_LONG}</b></td>
|
||||
<td align="left" class="line2">
|
||||
<select name="groupid" size="1" STYLE="width: 300px" {READONLY_ISUSERONLY}>
|
||||
<select name="groupid" size="1" STYLE="width: 300px" {READONLY_ISUSERONLY} class="maxwidth">
|
||||
<!-- BEGIN SUBGROUPS -->
|
||||
<option value="{mygroupid}" {group_selected}>{groupname}</option>
|
||||
<!-- END SUBGROUPS -->
|
||||
@ -91,23 +91,23 @@
|
||||
<!-- ENDIF ISGROUPSAVAILABLE="true" -->
|
||||
</table>
|
||||
<br>
|
||||
<table border="0" cellpadding="1" cellspacing="1" bgcolor="#DDDDDD" width="600" class="with_border_alternate">
|
||||
<table border="0" cellpadding="1" cellspacing="1" bgcolor="#DDDDDD" width="80%" class="with_border_alternate">
|
||||
<tr>
|
||||
<td align="center" class="cellmenu1" colspan="4"><b>{LN_VIEWS_COLUMNLIST}</b></td>
|
||||
</tr>
|
||||
<!-- BEGIN SUBCOLUMNS -->
|
||||
<tr>
|
||||
<td align="left" class="cellmenu2" width="150"><b>{LN_VIEWS_COLUMN} {ZAEHLER}: </b></td>
|
||||
<td align="left" class="cellmenu2" width="20%"><b>{LN_VIEWS_COLUMN} {ZAEHLER}: </b></td>
|
||||
|
||||
<td align="left" class="{colcssclass}" width="200">
|
||||
<td align="left" class="{colcssclass}" width="30%">
|
||||
<input type="hidden" name="Columns[]" value="{ColFieldID}">
|
||||
<b>{ColCaption}</b>
|
||||
</td>
|
||||
<td align="left" class="{colcssclass}" width="200">
|
||||
<td align="left" class="{colcssclass}" width="30%">
|
||||
<I>{ColInternalID}</I>
|
||||
</td>
|
||||
|
||||
<td align="center" class="{colcssclass}" width="150">
|
||||
<td align="center" class="{colcssclass}" width="20%">
|
||||
<button name="subop_moveup" type="submit" value="{ColFieldID}" class="borderlessbuttons" title="{LN_VIEWS_COLUMN_REMOVE}"><img src="{MENU_MOVE_UP}" width="16" alt="{LN_VIEWS_COLUMN_REMOVE}"></button>
|
||||
<button name="subop_movedown" type="submit" value="{ColFieldID}" class="borderlessbuttons" title="{LN_VIEWS_COLUMN_REMOVE}"><img src="{MENU_MOVE_DOWN}" width="16" alt="{LN_VIEWS_COLUMN_REMOVE}"></button>
|
||||
<button name="subop_delete" type="submit" value="{ColFieldID}" class="borderlessbuttons" title="{LN_VIEWS_COLUMN_REMOVE}"><img src="{MENU_DELETE}" width="16" alt="{LN_VIEWS_COLUMN_REMOVE}"></button>
|
||||
@ -121,7 +121,7 @@
|
||||
<tr>
|
||||
<td align="center" class="line2" colspan="4">
|
||||
|
||||
<select name="newcolumn" size="1" STYLE="width: 200px">
|
||||
<select name="newcolumn" size="1" class="maxwidth">
|
||||
<!-- BEGIN FIELDS -->
|
||||
<option value="{FieldID}" {group_selected}>{FieldCaption}</option>
|
||||
<!-- END FIELDS -->
|
||||
@ -131,7 +131,7 @@
|
||||
</tr>
|
||||
</table>
|
||||
<br>
|
||||
<table border="0" cellpadding="1" cellspacing="1" bgcolor="#DDDDDD" width="600" class="with_border_alternate">
|
||||
<table border="0" cellpadding="1" cellspacing="1" bgcolor="#DDDDDD" width="80%" class="with_border_alternate">
|
||||
<tr>
|
||||
<td align="center" colspan="2" class="line0">
|
||||
<br>
|
||||
|
Loading…
x
Reference in New Issue
Block a user