[gen] Improvement in the management of Unauthorized exceptions.
This commit is contained in:
parent
0c50fe188a
commit
7049e4780e
3 changed files with 21 additions and 9 deletions
|
@ -146,3 +146,4 @@ img { border: 0; vertical-align: middle }
|
|||
.homeTable td { padding: 10px 5px 10px 10px }
|
||||
.homeTable th { padding-top: 5px; font-size: 105% }
|
||||
.first { margin-top: 0px }
|
||||
.error { margin: 5px }
|
||||
|
|
|
@ -118,8 +118,10 @@
|
|||
</td>
|
||||
<td tal:condition="not: isDataChange"
|
||||
tal:content="python: _(contextObj.getWorkflowLabel(event['action']))"/>
|
||||
<td tal:define="actorId python:event.get('actor')"
|
||||
tal:content="python: tool.getUserName(actorId)"/>
|
||||
<td tal:define="actorId python:event.get('actor')">
|
||||
<span tal:condition="not: actorId" tal:replace="python: '?'"/>
|
||||
<span tal:condition="actorId" tal:content="python: tool.getUserName(actorId)"></span>
|
||||
</td>
|
||||
<td tal:content="python: tool.formatDate(event['time'], withHour=True)"/>
|
||||
<td tal:condition="not: isDataChange">
|
||||
<tal:c condition="rhComments"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue