##// END OF EJS Templates
audit-logs: present action data as formatted JSON.
marcink -
r1703:09de3e11 default
parent child Browse files
Show More
@@ -35,7 +35,12 b''
35 </td>
35 </td>
36 <td>
36 <td>
37 % if l.version == l.VERSION_2:
37 % if l.version == l.VERSION_2:
38 ${l.action_data}
38 <a href="#" onclick="$('#entry-'+${l.user_log_id}).toggle();return false">${_('toggle')}</a>
39 <div id="entry-${l.user_log_id}" style="display: none">
40 <pre>${h.json.dumps(l.action_data, indent=4, sort_keys=True)}</pre>
41 </div>
42 % else:
43 ${_('not available in v1 type')}
39 % endif
44 % endif
40 </td>
45 </td>
41 <td class="td-componentname">
46 <td class="td-componentname">
General Comments 0
You need to be logged in to leave comments. Login now