Compare commits
No commits in common. "e5c88c2111e25fbc0472e8f0304d35bd05bac5fa" and "0dec54ace0e349720c064b4f9675e1d3a739bd53" have entirely different histories.
e5c88c2111
...
0dec54ace0
3 changed files with 4 additions and 7 deletions
|
|
@ -51,8 +51,8 @@
|
|||
tal:define="results reportView/results">
|
||||
<tr>
|
||||
<th style="white-space: nowrap"
|
||||
tal:attributes="class col/cssClass"
|
||||
tal:repeat="col results/displayedColumns">
|
||||
<span tal:attributes="class col/cssClass">
|
||||
<a title="tooltip_sort_column"
|
||||
tal:define="colName col/name"
|
||||
tal:omit-tag="python:not item.isSortableColumn(tableName, colName)"
|
||||
|
|
@ -64,6 +64,7 @@
|
|||
tal:condition="src"
|
||||
tal:attributes="src src" />
|
||||
</a>
|
||||
</span>
|
||||
</th>
|
||||
</tr>
|
||||
<tr tal:repeat="row results"
|
||||
|
|
|
|||
|
|
@ -178,7 +178,7 @@ dayTo = TrackDateField('dayTo', u'End Day',
|
|||
executionSteps=['query'])
|
||||
day = TrackDateField('day', u'Day',
|
||||
description=u'The day the work was done.',
|
||||
cssClass='left',
|
||||
cssClass='center',
|
||||
executionSteps=['sort', 'output'])
|
||||
dayStart = TrackDateField('dayStart', u'Start Day',
|
||||
description=u'The day the unit of work was started.',
|
||||
|
|
@ -190,18 +190,15 @@ dayEnd = TrackDateField('dayEnd', u'End Day',
|
|||
executionSteps=['sort', 'output'])
|
||||
timeStart = TrackTimeField('start', u'Start',
|
||||
description=u'The time the unit of work was started.',
|
||||
cssClass='noprint',
|
||||
executionSteps=['sort', 'output'])
|
||||
timeEnd = TrackTimeField('end', u'End',
|
||||
description=u'The time the unit of work was finished.',
|
||||
cssClass='noprint',
|
||||
executionSteps=['output'])
|
||||
task = TargetField('taskId', u'Task',
|
||||
description=u'The task to which work items belong.',
|
||||
executionSteps=['sort', 'output'])
|
||||
party = PartyQueryField('userName', u'Party',
|
||||
description=u'The party (usually a person) who did the work.',
|
||||
cssClass='noprint',
|
||||
fieldType='selection',
|
||||
executionSteps=['sort', 'output', 'query'])
|
||||
#partyQuery = TargetField('userName', u'Party',
|
||||
|
|
@ -232,7 +229,6 @@ partyState = PartyStateField('partyState', u'Party State',
|
|||
executionSteps=['query', 'output'])
|
||||
activity = ActivityField('activity', u'LA',
|
||||
description=u'The activity assigned to the work item.',
|
||||
cssClass='noprint',
|
||||
fieldType='selection',
|
||||
executionSteps=['query', 'sort', 'output'])
|
||||
# process
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@
|
|||
<p><b i18n:translate="set-authentication-method">Set Authentication Method</b></p>
|
||||
<span i18n:translate="authentication-method">Authentication Method</span>:
|
||||
<select name="auth_method"
|
||||
onchange="document.cookie=`loops_auth_method=${this.value}; path=/; expires=Sun, 31 Jan 2027 12:00:00 UTC`"
|
||||
onchange="document.cookie=`loops_auth_method=${this.value}; path=/`"
|
||||
tal:define="meth view/authMethod"
|
||||
tal:attributes="value meth">
|
||||
<option value="legacy" i18n:translate="authentication-method-legacy"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue