Compare commits

..

2 commits

3 changed files with 7 additions and 4 deletions

View file

@ -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,7 +64,6 @@
tal:condition="src"
tal:attributes="src src" />
</a>
</span>
</th>
</tr>
<tr tal:repeat="row results"

View file

@ -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='center',
cssClass='left',
executionSteps=['sort', 'output'])
dayStart = TrackDateField('dayStart', u'Start Day',
description=u'The day the unit of work was started.',
@ -190,15 +190,18 @@ 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',
@ -229,6 +232,7 @@ 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

View file

@ -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=/`"
onchange="document.cookie=`loops_auth_method=${this.value}; path=/; expires=Sun, 31 Jan 2027 12:00:00 UTC`"
tal:define="meth view/authMethod"
tal:attributes="value meth">
<option value="legacy" i18n:translate="authentication-method-legacy"