mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:15 +01:00
c008c6ef70
-Fix broken add buttons
61 lines
2.4 KiB
XML
61 lines
2.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE overlay PUBLIC "-//Stylite AG//eTemplate 2//EN" "http://www.egroupware.org/etemplate2.dtd">
|
|
<!-- $Id$ -->
|
|
<overlay>
|
|
<template id="timesheet.index.dates" template="" lang="" group="0" version="1.2.001" >
|
|
<hbox>
|
|
<description value="Start"/>
|
|
<date id="startdate"/>
|
|
<description value="End"/>
|
|
<date statustext="Leave it empty for a full week" id="enddate"/>
|
|
</hbox>
|
|
</template>
|
|
<template id="timesheet.index.add" template="" lang="" group="0" version="1.7.001">
|
|
<buttononly id="add" class="plus_button" onclick="egw.open('timesheet');" parent_node="timesheet-index_plus_button_container"/>
|
|
</template>
|
|
<template id="timesheet.index.rows" template="" lang="" group="0" version="1.9.001">
|
|
<grid width="100%">
|
|
<columns>
|
|
<column width="10"/>
|
|
<column width="110"/>
|
|
<column width="90%" />
|
|
<column width="60"/>
|
|
</columns>
|
|
<rows>
|
|
<row class="th">
|
|
|
|
</row>
|
|
<row class="$row_cont[class] timesheetRow">
|
|
<description class=" cat_$row_cont[cat_id] mobile_cat_col"/>
|
|
<vbox>
|
|
<date-time id="${row}[ts_start]" readonly="true" options=",8"/>
|
|
<menulist class="$cont[ownerClass]">
|
|
<menupopup type="select-account" id="${row}[ts_owner]" readonly="true"/>
|
|
</menulist>
|
|
<menulist class="noWrap">
|
|
<menupopup type="select-cat" id="${row}[cat_id]" readonly="true"/>
|
|
</menulist>
|
|
</vbox>
|
|
<vbox>
|
|
<description id="${row}[ts_title]" no_lang="1" class="ts_title $row_cont[titleClass]"/>
|
|
<description id="${row}[ts_description]" class="ts_description" no_lang="1"/>
|
|
<link id="${row}[ts_link]" no_lang="1"/>
|
|
</vbox>
|
|
<vbox class="timesheet3Col">
|
|
<date-duration id="${row}[ts_duration]" readonly="true" options=",h,,,1" align="right"/>
|
|
<textbox type="float" id="${row}[ts_quantity]" no_lang="1" readonly="true" precision="3"/>
|
|
<textbox type="float" id="${row}[ts_total]" no_lang="1" readonly="true" precision="2"/>
|
|
<menulist>
|
|
<menupopup id="${row}[ts_status]" readonly="true"/>
|
|
</menulist>
|
|
</vbox>
|
|
</row>
|
|
</rows>
|
|
</grid>
|
|
</template>
|
|
<template id="timesheet.index" template="" lang="" group="0" version="1.9.001">
|
|
<description id="plus_button_container"/>
|
|
<nextmatch id="nm" options="timesheet.index.rows" header_right="timesheet.index.add" header_left="timesheet.index.dates"/>
|
|
</template>
|
|
</overlay>
|