mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 07:53:39 +01:00
bringen the xet-files up-to-date
This commit is contained in:
parent
1dee60f3d6
commit
6762a5f7b3
122
infolog/templates/default/customfields.xet
Normal file
122
infolog/templates/default/customfields.xet
Normal file
@ -0,0 +1,122 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- $Id$ -->
|
||||
<overlay>
|
||||
<grid id="infolog.customfields.status" template="" lang="" group="0" version="0.9.15.001">
|
||||
<columns>
|
||||
<column/>
|
||||
<column/>
|
||||
<column/>
|
||||
<column/>
|
||||
<column disabled="1"/>
|
||||
<column/>
|
||||
</columns>
|
||||
<rows>
|
||||
<row class="th">
|
||||
<description value="Name"/>
|
||||
<description value="Label"/>
|
||||
<description value="Translation"/>
|
||||
<description value="Default"/>
|
||||
<description value="Disabled"/>
|
||||
<description value="Action" align="center"/>
|
||||
</row>
|
||||
<row class="row">
|
||||
<textbox size="10" maxlength="10" id="${row}[name]" statustext="the name used internaly (<= 10 chars), changeing it makes existing data unavailible"/>
|
||||
<textbox size="40" id="${row}[label]" statustext="the text displayed to the user"/>
|
||||
<description id="${row}[label]"/>
|
||||
<radio options="$row_cont[name]" align="center" id="default" statustext="default status for a new log entry"/>
|
||||
<checkbox align="center" id="${row}[disabled]" statustext="disables a status without deleting it"/>
|
||||
<hbox>
|
||||
<button label="Delete" id="delete[$row_cont[name]]" statustext="deletes this status"/>
|
||||
<button label="Create" id="create$row_cont[name]" statustext="creates a new status with the given values"/>
|
||||
</hbox>
|
||||
</row>
|
||||
</rows>
|
||||
</grid>
|
||||
<grid id="infolog.customfields.fields" template="" lang="" group="0" version="0.9.15.001">
|
||||
<columns>
|
||||
<column/>
|
||||
<column/>
|
||||
<column/>
|
||||
<column/>
|
||||
<column/>
|
||||
<column/>
|
||||
<column/>
|
||||
</columns>
|
||||
<rows>
|
||||
<row class="th">
|
||||
<description value="Typ"/>
|
||||
<description value="Name"/>
|
||||
<description value="Label"/>
|
||||
<description value="Values for selectbox"/>
|
||||
<description value="Length<br>Rows"/>
|
||||
<description value="Order"/>
|
||||
<description value="Action" align="center" statustext="deletes this field"/>
|
||||
</row>
|
||||
<row class="row" valign="top">
|
||||
<menulist>
|
||||
<menupopup options="All" id="${row}[typ]" statustext="for which types should this field be used"/>
|
||||
</menulist>
|
||||
<textbox size="20" maxlength="32" id="${row}[name]" statustext="the name used internaly (<= 20 chars), changeing it makes existing data unavailible"/>
|
||||
<vbox>
|
||||
<textbox maxlength="255" id="${row}[label]" statustext="the text displayed to the user"/>
|
||||
<description id="${row}[label]"/>
|
||||
</vbox>
|
||||
<textbox multiline="true" rows="2" cols="30" id="${row}[values]" statustext="each value is a line like <id>[=<label>]"/>
|
||||
<vbox>
|
||||
<textbox size="5" id="${row}[len]" statustext="max length of the input [, length of the inputfield (optional)]"/>
|
||||
<int options="0,10,2" id="${row}[rows]" statustext="number of row for a multiline inputfield or line of a multi-select-box" blur="1"/>
|
||||
</vbox>
|
||||
<int options="1,,3" id="${row}[order]" statustext="determines the order the fields are displayed"/>
|
||||
<hbox>
|
||||
<button label="Delete" id="delete[$row_cont[name]]" statustext="deletes this field"/>
|
||||
<button label="Create" id="create$row_cont[name]" statustext="creates a new field"/>
|
||||
</hbox>
|
||||
</row>
|
||||
</rows>
|
||||
</grid>
|
||||
<grid id="infolog.customfields" template="" lang="" group="" version="0.9.15.001">
|
||||
<columns>
|
||||
<column/>
|
||||
<column/>
|
||||
<column/>
|
||||
<column/>
|
||||
<column/>
|
||||
<column width="80%"/>
|
||||
</columns>
|
||||
<rows>
|
||||
<row>
|
||||
<description value="Typ"/>
|
||||
<menulist>
|
||||
<menupopup id="typ" onchange="1" statustext="select a typ to edit it's status-values or delete it"/>
|
||||
</menulist>
|
||||
<button label="Delete" id="button[delete]" statustext="deletes the selected typ"/>
|
||||
<textbox size="10" maxlength="10" id="new_name" statustext="name of new type to create" blur="new name"/>
|
||||
<button label="Create" id="button[create]" statustext="creates a new typ with the given name"/>
|
||||
<description class="error_msg" no_lang="1" align="center" id="error_msg"/>
|
||||
</row>
|
||||
<row class="header">
|
||||
<description span="all" value="Custom status for typ" id="typ"/>
|
||||
</row>
|
||||
<row>
|
||||
<grid content="status" span="all" id="infolog.customfields.status"/>
|
||||
</row>
|
||||
<row class="header">
|
||||
<description span="all" value="Custom fields"/>
|
||||
</row>
|
||||
<row>
|
||||
<grid content="fields" span="all" id="infolog.customfields.fields"/>
|
||||
</row>
|
||||
<row>
|
||||
<hbox span="all">
|
||||
<button label="Save" id="button[save]" statustext="saves the changes made and leaves"/>
|
||||
<button label="Apply" id="button[apply]" statustext="applies the changes"/>
|
||||
<button label="Cancel" id="button[cancel]" statustext="leaves without saveing"/>
|
||||
</hbox>
|
||||
</row>
|
||||
</rows>
|
||||
<styles>
|
||||
.header { font-weight: bold; font-size: 120%; }
|
||||
.error_msg { color: red; font-style: italics; }
|
||||
</styles>
|
||||
</grid>
|
||||
</overlay>
|
@ -1,10 +1,9 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- $Id$ -->
|
||||
<overlay>
|
||||
<grid id="infolog.index.rows" template="" lang="" group="0" version="0.9.15.002">
|
||||
<grid id="infolog.index.rows-noheader" template="" lang="" group="0" version="0.9.15.003">
|
||||
<columns>
|
||||
<column width="2%"/>
|
||||
<column width="4%"/>
|
||||
<column width="5%"/>
|
||||
<column/>
|
||||
<column width="8%"/>
|
||||
<column width="8%"/>
|
||||
@ -14,36 +13,55 @@
|
||||
</columns>
|
||||
<rows>
|
||||
<row class="th">
|
||||
<description value="Type"/>
|
||||
<description value="Status"/>
|
||||
<description value="Subject"/>
|
||||
<description value="Startdate Enddate"/>
|
||||
<description value="Owner Responsible"/>
|
||||
<vbox>
|
||||
<description value="Type"/>
|
||||
<description value="Status"/>
|
||||
</vbox>
|
||||
<vbox>
|
||||
<description value="Subject"/>
|
||||
<description value="Description"/>
|
||||
</vbox>
|
||||
<vbox>
|
||||
<description value="Startdate"/>
|
||||
<description value="Enddate"/>
|
||||
</vbox>
|
||||
<vbox>
|
||||
<description value="Owner"/>
|
||||
<description value="Responsible"/>
|
||||
</vbox>
|
||||
<description value="last changed"/>
|
||||
<description value="Sub"/>
|
||||
<description value="Action"/>
|
||||
</row>
|
||||
<row class="row" valign="top">
|
||||
<image label="$row_cont[info_type]" align="center" src="${row}[info_type]"/>
|
||||
<image label="$row_cont[info_status]" align="center" src="${row}[info_status]"/>
|
||||
<hbox options="2,2" align="center">
|
||||
<image label="$row_cont[info_type]" src="${row}[info_type]"/>
|
||||
<button image="$row_cont[info_status]" ro_image="$row_cont[info_status]" label="$row_cont[info_status]" id="edit_status[$row_cont[info_id]]" statustext="Change the status of an entry, eg. close it"/>
|
||||
</hbox>
|
||||
<vbox options="0,0">
|
||||
<html no_lang="1" id="${row}[subject]"/>
|
||||
<description options="b,@${row}[info_link_view]" value="%s $row_cont[info_addr]" no_lang="1" id="${row}[info_link_title]" statustext="view this linked entry in its application"/>
|
||||
<description class="$row_cont[sub_class]" no_lang="1" id="${row}[info_subject]"/>
|
||||
<description no_lang="1" id="${row}[info_des]"/>
|
||||
<html id="${row}[filelinks]"/>
|
||||
<link-string id="${row}[filelinks]"/>
|
||||
</vbox>
|
||||
<vbox options="0,0">
|
||||
<date id="${row}[info_startdate]" readonly="true"/>
|
||||
<html id="${row}[enddate]" readonly="true"/>
|
||||
<date class="$row_cont[end_class]" id="${row}[info_enddate]" readonly="true"/>
|
||||
</vbox>
|
||||
<vbox options="0,0" class="$row_cont[info_access]">
|
||||
<vbox options="0,0">
|
||||
<menulist>
|
||||
<menupopup type="select-account" options=",,0" id="${row}[info_owner]" readonly="true"/>
|
||||
<menupopup type="select-account" id="${row}[info_owner]" readonly="true"/>
|
||||
</menulist>
|
||||
<menulist>
|
||||
<menupopup type="select-account" options=",,0" id="${row}[info_responsible]" readonly="true"/>
|
||||
<menupopup type="select-account" id="${row}[info_responsible]" readonly="true"/>
|
||||
</menulist>
|
||||
</vbox>
|
||||
<vbox options="0,0">
|
||||
<date-time id="${row}[info_datemodified]" readonly="true"/>
|
||||
<menulist>
|
||||
<menupopup type="select-account" id="${row}[info_modifier]" readonly="true"/>
|
||||
</menulist>
|
||||
</vbox>
|
||||
<date id="${row}[info_datemodified]" readonly="true"/>
|
||||
<vbox options="0,0" align="center">
|
||||
<button image="new.gif" label="Add sub" align="center" id="sp[$row_cont[info_id]]" statustext="Add a new sub-task, -note, -call to this entry"/>
|
||||
<button image="view.gif" label="View subs" align="center" id="view[$row_cont[info_id]]" statustext="View all subs of this entry"/>
|
||||
@ -57,38 +75,39 @@
|
||||
</row>
|
||||
</rows>
|
||||
<styles>
|
||||
.low,.pri_low_done { color:#606060; }
|
||||
.normal,.pri_normal_done { color:black }
|
||||
.high { color:#cc0000; } .high_done { color:#800000; }
|
||||
.urgent { color:#ff00ff; } .urgent_done { color:#800080; }
|
||||
.low,.low_done,.normal,.normal_done,.high,.high_done,.urgent,.urgent_done { font-weight: bold; }
|
||||
.low,.low_done { color:#606060; }
|
||||
.normal,.normal_done { color:black }
|
||||
.high { color:#cc0000; }
|
||||
.high_done { color:#800000; }
|
||||
.urgent { color:#ff00ff; }
|
||||
.urgent_done { color:#800080; }
|
||||
.overdue { color:#cc0000; font-weight:bold; }
|
||||
.private { font-style:italic; }
|
||||
.note { color:#808080; font-style:italic; }
|
||||
|
||||
</styles>
|
||||
</grid>
|
||||
<grid id="infolog.delete" template="" lang="" group="" version="0.9.15.001" width="100%" border="0" spacing="0" padding="0">
|
||||
<grid id="infolog.delete" template="" lang="" group="" version="0.9.15.003" width="100%" border="0" spacing="0" padding="0">
|
||||
<columns>
|
||||
<column/>
|
||||
</columns>
|
||||
<rows>
|
||||
<row>
|
||||
<description class="headertext" value="InfoLog - Delete" id="appheader"/>
|
||||
<description/>
|
||||
</row>
|
||||
<row>
|
||||
<hrule/>
|
||||
<grid content="main" align="center" id="infolog.index.rows-noheader"/>
|
||||
</row>
|
||||
<row>
|
||||
<grid content="main" align="center" id="infolog.index.rows"/>
|
||||
</row>
|
||||
<row height="100">
|
||||
<row valign="bottom" height="50">
|
||||
<description class="headertext" value="Are you shure you want to delete this entry ?" align="center"/>
|
||||
</row>
|
||||
<row height="50" disabled="!@remove_subs">
|
||||
<checkbox label="Delete all subs (if not subs will be subs of this enties parent or have no parent)" align="center" id="remove_subs"/>
|
||||
</row>
|
||||
<row>
|
||||
<hbox options="20" align="center">
|
||||
<button label="Yes - Delete" align="right" id="delete" statustext="Delete the entry"/>
|
||||
<button label="No - Cancel" id="cancel" statustext="Abort without deleting"/>
|
||||
<description/>
|
||||
</hbox>
|
||||
</row>
|
||||
</rows>
|
||||
|
@ -19,23 +19,24 @@
|
||||
<grid id="infolog.edit.links" template="" lang="" group="0" version="0.9.15.003" width="100%">
|
||||
<columns>
|
||||
<column width="100"/>
|
||||
<column/>
|
||||
</columns>
|
||||
<rows>
|
||||
<row class="th">
|
||||
<description value="Create new links"/>
|
||||
<row class="th" disabled="@status_only">
|
||||
<description span="all" value="Create new links"/>
|
||||
</row>
|
||||
<row class="row">
|
||||
<link-to id="link_to"/>
|
||||
<row class="row" disabled="@status_only">
|
||||
<link-to span="all" id="link_to"/>
|
||||
</row>
|
||||
<row class="th">
|
||||
<description value="Existing links"/>
|
||||
<description span="all" value="Existing links"/>
|
||||
</row>
|
||||
<row class="row_off" valign="top" height="164">
|
||||
<link-list id="link_to"/>
|
||||
<link-list span="all" id="link_to"/>
|
||||
</row>
|
||||
</rows>
|
||||
</grid>
|
||||
<grid id="infolog.edit.delegation" template="" lang="" group="0" version="0.9.15.001" width="100%">
|
||||
<grid id="infolog.edit.delegation" template="" lang="" group="0" version="0.9.15.002" width="100%">
|
||||
<columns>
|
||||
<column width="100"/>
|
||||
<column/>
|
||||
@ -59,7 +60,7 @@
|
||||
<menupopup type="select-account" options="Owner" id="info_responsible" statustext="select a responsible user: a person you want to delegate this task"/>
|
||||
</menulist>
|
||||
</row>
|
||||
<row class="row">
|
||||
<row class="row" disabled="1">
|
||||
<description value="Confirm"/>
|
||||
<menulist>
|
||||
<menupopup id="info_confirm" statustext="do you want a confirmation of the responsible on: accepting, finishing the task or both"/>
|
||||
@ -70,7 +71,17 @@
|
||||
</row>
|
||||
</rows>
|
||||
</grid>
|
||||
<grid id="infolog.edit" template="" lang="" group="" version="0.9.15.008" width="100%">
|
||||
<grid id="infolog.edit.customfields" template="" lang="" group="0" version="0.9.15.001" width="100%" height="100%" spacing="0" padding="0">
|
||||
<columns>
|
||||
<column/>
|
||||
</columns>
|
||||
<rows>
|
||||
<row height="100%">
|
||||
<customfields id="customfields"/>
|
||||
</row>
|
||||
</rows>
|
||||
</grid>
|
||||
<grid id="infolog.edit" template="" lang="" group="" version="0.9.15.009" width="100%">
|
||||
<columns>
|
||||
<column width="103"/>
|
||||
<column width="300"/>
|
||||
@ -104,17 +115,19 @@
|
||||
<description value="Subject"/>
|
||||
<textbox size="64" maxlength="64" span="all" id="info_subject" needed="1" statustext="a short subject for the entry"/>
|
||||
</row>
|
||||
<row height="250">
|
||||
<row valign="top" height="250">
|
||||
<tabbox>
|
||||
<tabs span="all">
|
||||
<tab label="Description" statustext="longer textual description"/>
|
||||
<tab label="Links" statustext="Links of this entry"/>
|
||||
<tab label="Delegation" statustext="responsible user, priority, ..."/>
|
||||
<tab label="Customfields" statustext=""/>
|
||||
</tabs>
|
||||
<tabpanels>
|
||||
<grid id="infolog.edit.description"/>
|
||||
<grid id="infolog.edit.links"/>
|
||||
<grid id="infolog.edit.delegation"/>
|
||||
<grid id="infolog.edit.customfields"/>
|
||||
</tabpanels>
|
||||
</tabbox>
|
||||
</row>
|
||||
@ -130,7 +143,7 @@
|
||||
<row class="row">
|
||||
<description value="Status"/>
|
||||
<menulist>
|
||||
<menupopup id="info_status" statustext="allows to set the status of an entry, eg. set a ToDo to done if it's finished (values depend on entry-typ)"/>
|
||||
<menupopup id="info_status" statustext="@status_help"/>
|
||||
</menulist>
|
||||
<description value="Private"/>
|
||||
<checkbox options="private,public" id="info_access" statustext="should this entry only be visible to you and people you grant privat access via the ACL"/>
|
||||
|
@ -1,10 +1,9 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- $Id$ -->
|
||||
<overlay>
|
||||
<grid id="infolog.index.rows" template="" lang="" group="0" version="0.9.15.003">
|
||||
<grid id="infolog.index.rows-noheader" template="" lang="" group="0" version="0.9.15.003">
|
||||
<columns>
|
||||
<column width="2%"/>
|
||||
<column width="4%"/>
|
||||
<column width="5%"/>
|
||||
<column/>
|
||||
<column width="8%"/>
|
||||
<column width="8%"/>
|
||||
@ -14,23 +13,36 @@
|
||||
</columns>
|
||||
<rows>
|
||||
<row class="th">
|
||||
<description value="Type"/>
|
||||
<description value="Status"/>
|
||||
<description value="Subject"/>
|
||||
<description value="Startdate Enddate"/>
|
||||
<description value="Owner Responsible"/>
|
||||
<vbox>
|
||||
<description value="Type"/>
|
||||
<description value="Status"/>
|
||||
</vbox>
|
||||
<vbox>
|
||||
<description value="Subject"/>
|
||||
<description value="Description"/>
|
||||
</vbox>
|
||||
<vbox>
|
||||
<description value="Startdate"/>
|
||||
<description value="Enddate"/>
|
||||
</vbox>
|
||||
<vbox>
|
||||
<description value="Owner"/>
|
||||
<description value="Responsible"/>
|
||||
</vbox>
|
||||
<description value="last changed"/>
|
||||
<description value="Sub"/>
|
||||
<description value="Action"/>
|
||||
</row>
|
||||
<row class="row" valign="top">
|
||||
<image label="$row_cont[info_type]" align="center" src="${row}[info_type]"/>
|
||||
<image label="$row_cont[info_status]" align="center" src="${row}[info_status]"/>
|
||||
<hbox options="2,2" align="center">
|
||||
<image label="$row_cont[info_type]" src="${row}[info_type]"/>
|
||||
<button image="$row_cont[info_status]" ro_image="$row_cont[info_status]" label="$row_cont[info_status]" id="edit_status[$row_cont[info_id]]" statustext="Change the status of an entry, eg. close it"/>
|
||||
</hbox>
|
||||
<vbox options="0,0">
|
||||
<description options="b,@${row}[info_link_view]" value="%s $row_cont[info_addr]" no_lang="1" id="${row}[info_from]" statustext="view this linked entry in its application"/>
|
||||
<description options="b,@${row}[info_link_view]" value="%s $row_cont[info_addr]" no_lang="1" id="${row}[info_link_title]" statustext="view this linked entry in its application"/>
|
||||
<description class="$row_cont[sub_class]" no_lang="1" id="${row}[info_subject]"/>
|
||||
<description no_lang="1" id="${row}[info_des]"/>
|
||||
<html id="${row}[filelinks]"/>
|
||||
<link-string id="${row}[filelinks]"/>
|
||||
</vbox>
|
||||
<vbox options="0,0">
|
||||
<date id="${row}[info_startdate]" readonly="true"/>
|
||||
@ -38,16 +50,16 @@
|
||||
</vbox>
|
||||
<vbox options="0,0">
|
||||
<menulist>
|
||||
<menupopup type="select-account" options=",,0" id="${row}[info_owner]" readonly="true"/>
|
||||
<menupopup type="select-account" id="${row}[info_owner]" readonly="true"/>
|
||||
</menulist>
|
||||
<menulist>
|
||||
<menupopup type="select-account" options=",,0" id="${row}[info_responsible]" readonly="true"/>
|
||||
<menupopup type="select-account" id="${row}[info_responsible]" readonly="true"/>
|
||||
</menulist>
|
||||
</vbox>
|
||||
<vbox options="0,0">
|
||||
<date id="${row}[info_datemodified]" readonly="true"/>
|
||||
<date-time id="${row}[info_datemodified]" readonly="true"/>
|
||||
<menulist>
|
||||
<menupopup type="select-account" options=",,0" id="${row}[info_modifier]" readonly="true"/>
|
||||
<menupopup type="select-account" id="${row}[info_modifier]" readonly="true"/>
|
||||
</menulist>
|
||||
</vbox>
|
||||
<vbox options="0,0" align="center">
|
||||
@ -75,15 +87,101 @@
|
||||
|
||||
</styles>
|
||||
</grid>
|
||||
<grid id="infolog.index" template="" lang="" group="" version="0.9.15.003" width="100%" border="0" spacing="0" padding="0">
|
||||
<grid id="infolog.index.rows" template="" lang="" group="0" version="0.9.15.008">
|
||||
<columns>
|
||||
<column width="2%"/>
|
||||
<column/>
|
||||
<column width="8%"/>
|
||||
<column width="8%"/>
|
||||
<column width="8%"/>
|
||||
<column width="3%" disabled="@no_actions"/>
|
||||
<column width="3%" disabled="@no_actions"/>
|
||||
</columns>
|
||||
<rows>
|
||||
<row class="th">
|
||||
<vbox options="0,0">
|
||||
<nextmatch-filterheader options="Type ..." id="info_type"/>
|
||||
<nextmatch-filterheader options="Status ..." id="info_status"/>
|
||||
</vbox>
|
||||
<vbox>
|
||||
<nextmatch-sortheader label="Subject" id="info_subject"/>
|
||||
<nextmatch-sortheader label="Description" id="info_des"/>
|
||||
</vbox>
|
||||
<vbox>
|
||||
<nextmatch-sortheader label="Startdate" id="info_startdate"/>
|
||||
<nextmatch-sortheader label="Enddate" id="info_enddate"/>
|
||||
</vbox>
|
||||
<vbox>
|
||||
<nextmatch-sortheader label="Owner" id="info_owner"/>
|
||||
<nextmatch-sortheader label="Responsible" id="info_responsible"/>
|
||||
</vbox>
|
||||
<nextmatch-sortheader label="last changed" id="info_datemodified"/>
|
||||
<description value="Sub"/>
|
||||
<description value="Action"/>
|
||||
</row>
|
||||
<row class="row" valign="top">
|
||||
<hbox options=",5" align="center">
|
||||
<image label="$row_cont[info_type]" src="${row}[info_type]"/>
|
||||
<button image="$row_cont[info_status]" ro_image="$row_cont[info_status]" label="$row_cont[info_status]" id="edit_status[$row_cont[info_id]]" statustext="Change the status of an entry, eg. close it"/>
|
||||
</hbox>
|
||||
<vbox options="0,0">
|
||||
<description options="b,@${row}[info_link_view]" value="%s $row_cont[info_addr]" no_lang="1" id="${row}[info_link_title]" statustext="view this linked entry in its application"/>
|
||||
<description class="$row_cont[sub_class]" no_lang="1" id="${row}[info_subject]"/>
|
||||
<description no_lang="1" id="${row}[info_des]"/>
|
||||
<link-string id="${row}[filelinks]"/>
|
||||
</vbox>
|
||||
<vbox options="0,0">
|
||||
<date id="${row}[info_startdate]" readonly="true"/>
|
||||
<date class="$row_cont[end_class]" id="${row}[info_enddate]" readonly="true"/>
|
||||
</vbox>
|
||||
<vbox options="0,0">
|
||||
<menulist>
|
||||
<menupopup type="select-account" id="${row}[info_owner]" readonly="true"/>
|
||||
</menulist>
|
||||
<menulist>
|
||||
<menupopup type="select-account" id="${row}[info_responsible]" readonly="true"/>
|
||||
</menulist>
|
||||
</vbox>
|
||||
<vbox options="0,0">
|
||||
<date-time id="${row}[info_datemodified]" readonly="true"/>
|
||||
<menulist>
|
||||
<menupopup type="select-account" id="${row}[info_modifier]" readonly="true"/>
|
||||
</menulist>
|
||||
</vbox>
|
||||
<vbox options="0,0" align="center">
|
||||
<button image="new.gif" label="Add sub" align="center" id="sp[$row_cont[info_id]]" statustext="Add a new sub-task, -note, -call to this entry"/>
|
||||
<button image="view.gif" label="View subs" align="center" id="view[$row_cont[info_id]]" statustext="View all subs of this entry"/>
|
||||
<button image="parent.gif" label="View parent" align="center" id="view[$row_cont[info_id_parent]]" statustext="View the parent of this entry and all his subs"/>
|
||||
</vbox>
|
||||
<hbox>
|
||||
<button image="edit.gif" label="Edit" id="edit[$row_cont[info_id]]" statustext="Edit this entry"/>
|
||||
<button image="delete.gif" label="Delete" id="delete[$row_cont[info_id]]" statustext="Delete this entry"/>
|
||||
<button image="addfile.gif" label="Add file" id="file[$row_cont[info_id]]" disabled="true" statustext="Attach a file"/>
|
||||
</hbox>
|
||||
</row>
|
||||
</rows>
|
||||
<styles>
|
||||
.low,.low_done,.normal,.normal_done,.high,.high_done,.urgent,.urgent_done { font-weight: bold; }
|
||||
.low,.low_done { color:#606060; }
|
||||
.normal,.normal_done { color:black }
|
||||
.high { color:#cc0000; }
|
||||
.high_done { color:#800000; }
|
||||
.urgent { color:#ff00ff; }
|
||||
.urgent_done { color:#800080; }
|
||||
.overdue { color:#cc0000; font-weight:bold; }
|
||||
.private { font-style:italic; }
|
||||
|
||||
</styles>
|
||||
</grid>
|
||||
<grid id="infolog.index" template="" lang="" group="" version="0.9.15.005" width="100%" border="0" spacing="0" padding="0">
|
||||
<columns>
|
||||
<column width="95%"/>
|
||||
<column/>
|
||||
<column/>
|
||||
</columns>
|
||||
<rows>
|
||||
<row>
|
||||
<description class="headertext" value="InfoLog" id="appheader"/>
|
||||
<row disabled="1">
|
||||
<description class="headertext" id="appheader"/>
|
||||
<description class="headertext" value="Add:" align="right"/>
|
||||
<hbox>
|
||||
<button image="task" label="ToDo" align="right" id="add[task]" statustext="Add a new ToDo"/>
|
||||
@ -91,11 +189,8 @@
|
||||
<button image="note" label="Note" id="add[note]" statustext="Add a new Note"/>
|
||||
</hbox>
|
||||
</row>
|
||||
<row>
|
||||
<hrule span="all"/>
|
||||
</row>
|
||||
<row disabled="!@main">
|
||||
<grid content="main" span="all" id="infolog.index.rows"/>
|
||||
<grid content="main" span="all" id="infolog.index.rows-noheader"/>
|
||||
</row>
|
||||
<row>
|
||||
<nextmatch options="infolog.index.rows" span="all" id="nm"/>
|
||||
|
Loading…
Reference in New Issue
Block a user