[gen] Missing i18n in Ref field.
This commit is contained in:
parent
93bde7a0f5
commit
7a38892cee
|
@ -43,15 +43,17 @@
|
|||
<td tal:condition="python: not appyType['noForm'] and obj.mayEdit()">
|
||||
<a tal:define="navInfo python:'ref.%s.%s:%s.%d.%d' % (contextObj.UID(), fieldName, appyType['pageName'], repeat['obj'].number()+startNumber, totalNumber);"
|
||||
tal:attributes="href python: obj.getUrl(mode='edit', page='main', nav=navInfo)">
|
||||
<img title="Edit" tal:attributes="src string: $appUrl/ui/edit.gif"/>
|
||||
<img tal:attributes="src string: $appUrl/ui/edit.gif;
|
||||
title python: _('object_edit')"/>
|
||||
</a>
|
||||
</td>
|
||||
<tal:comment replace="nothing">Delete the element</tal:comment>
|
||||
<td>
|
||||
<img tal:condition="python: not appyType['isBack'] and obj.mayDelete()"
|
||||
title="Delete" style="cursor:pointer"
|
||||
<img style="cursor:pointer"
|
||||
tal:condition="python: not appyType['isBack'] and obj.mayDelete()"
|
||||
tal:attributes="src string: $appUrl/ui/delete.png;
|
||||
onClick python:'onDeleteObject(\'%s\')' % obj.UID()"/>
|
||||
onClick python:'onDeleteObject(\'%s\')' % obj.UID();
|
||||
title python: _('object_delete')"/>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
|
Loading…
Reference in a new issue