Make moderation view changes less invasive.
This commit is contained in:
@@ -88,7 +88,8 @@
|
||||
<tbody>
|
||||
<tal:block repeat="item batch">
|
||||
<tr class="commentrow"
|
||||
tal:define="even repeat/item/even"
|
||||
tal:define="even repeat/item/even;
|
||||
email python:getattr(item.getObject(), 'author_email')"
|
||||
tal:attributes="class python: even and 'odd' or 'even'">
|
||||
<td class="notDraggable">
|
||||
<input type="checkbox"
|
||||
@@ -105,11 +106,12 @@
|
||||
</td>
|
||||
<td>
|
||||
<span tal:content="python:item.author_name or item.Creator">Name</span>
|
||||
<div tal:condition="item/author_email"><a
|
||||
tal:attributes="href string:mailto:${item/author_email}"
|
||||
tal:content="item/author_email">Email</a></div>
|
||||
<tal:email tal:condition="email"><br /><a
|
||||
tal:attributes="href string:mailto:$email"
|
||||
tal:content="email">Email</a></tal:email>
|
||||
</td>
|
||||
<td tal:content="python:toLocalizedTime(item.ModificationDate, long_format=1)" />
|
||||
<td tal:content="python:toLocalizedTime(item.ModificationDate,
|
||||
long_format=1)" />
|
||||
<td>
|
||||
<a tal:attributes="href item/getURL"
|
||||
tal:content="item/in_response_to" />
|
||||
|
||||
Reference in New Issue
Block a user