2009-11-03 08:02:18 -06:00
|
|
|
<metal:queryResults define-macro="queryResult"
|
2009-11-17 03:05:19 -06:00
|
|
|
tal:define="tool python: contextObj;
|
|
|
|
contentType request/type_name;
|
2010-12-06 04:11:40 -06:00
|
|
|
refInfo tool/getRefInfo;
|
|
|
|
refField python: refInfo[1];
|
|
|
|
refInfo python: refInfo[0];
|
2009-11-17 03:05:19 -06:00
|
|
|
startNumber request/startNumber|python:'0';
|
|
|
|
startNumber python: int(startNumber);
|
|
|
|
searchName request/search;
|
2011-09-07 02:56:53 -05:00
|
|
|
labelId python: searchName and ('%s_search_%s' % (contentType, searchName)) or '';
|
|
|
|
labelId python: (searchName == '_advanced') and 'search_results' or labelId;
|
|
|
|
searchLabel python: labelId and tool.translate(labelId) or '';
|
2009-11-17 03:05:19 -06:00
|
|
|
severalTypes python: contentType and (contentType.find(',') != -1);
|
2010-04-30 05:05:29 -05:00
|
|
|
sortKey request/sortKey| python:'';
|
|
|
|
sortOrder request/sortOrder| python:'asc';
|
|
|
|
filterKey request/filterKey| python:'';
|
|
|
|
filterValue request/filterValue | python:'';
|
2010-12-06 04:11:40 -06:00
|
|
|
queryResult python: tool.executeQuery(contentType, searchName, startNumber, remember=True, sortBy=sortKey, sortOrder=sortOrder, filterKey=filterKey, filterValue=filterValue, refField=refField);
|
2009-11-17 03:05:19 -06:00
|
|
|
objs queryResult/objects;
|
|
|
|
totalNumber queryResult/totalNumber;
|
|
|
|
batchSize queryResult/batchSize;
|
|
|
|
ajaxHookId python:'queryResult';
|
2010-10-14 07:43:56 -05:00
|
|
|
navBaseCall python: 'askQueryResult(\'%s\',\'%s\',\'%s\',\'%s\',**v**)' % (ajaxHookId, tool.absolute_url(), contentType, searchName);
|
2010-12-06 04:11:40 -06:00
|
|
|
newSearchUrl python: '%s/skyn/search?type_name=%s&ref=%s' % (tool.getAppFolder().absolute_url(), contentType, refInfo);">
|
2009-11-03 08:02:18 -06:00
|
|
|
|
|
|
|
<tal:result condition="objs">
|
|
|
|
|
2009-11-17 03:05:19 -06:00
|
|
|
<fieldset>
|
|
|
|
<legend>
|
2011-09-07 02:56:53 -05:00
|
|
|
<span tal:replace="structure python: test(searchName, searchLabel, test(severalTypes, tool.translate(tool.getAppName()), tool.translate('%s_plural' % contentType)))"/>
|
2009-11-17 03:05:19 -06:00
|
|
|
(<span tal:replace="totalNumber"/>)
|
2010-01-06 11:36:16 -06:00
|
|
|
<tal:newSearch condition="python: searchName == '_advanced'">
|
|
|
|
— <i><a tal:attributes="href newSearchUrl"
|
|
|
|
tal:content="python: tool.translate('search_new')"></a></i>
|
|
|
|
</tal:newSearch>
|
2009-11-17 03:05:19 -06:00
|
|
|
</legend>
|
2009-11-03 08:02:18 -06:00
|
|
|
|
2011-01-28 07:36:30 -06:00
|
|
|
<tal:comment replace="nothing">Display here POD templates if required.</tal:comment>
|
|
|
|
<table align="right" cellpadding="0" cellspacing="0"
|
|
|
|
tal:define="widgets python: tool.getResultPodFields(contentType);
|
|
|
|
layoutType python:'view'"
|
|
|
|
tal:condition="python: objs and widgets">
|
|
|
|
<tr><td tal:define="contextObj python: objs[0]"
|
|
|
|
tal:repeat="widget widgets">
|
|
|
|
<metal:pod use-macro="here/skyn/widgets/show/macros/field"/>
|
|
|
|
</td></tr>
|
|
|
|
</table>
|
|
|
|
|
2011-09-07 02:56:53 -05:00
|
|
|
<table cellpadding="0" cellspacing="0" width="100%">
|
|
|
|
<tr>
|
|
|
|
<tal:descr condition="searchName">
|
|
|
|
<td tal:define="descr python: tool.translate('%s_descr' % labelId)"
|
|
|
|
tal:condition="descr/strip">
|
|
|
|
<span class="discreet" tal:content="descr"></span><br/><br/>
|
2009-11-17 03:05:19 -06:00
|
|
|
</td>
|
2011-09-07 02:56:53 -05:00
|
|
|
</tal:descr>
|
2009-11-24 15:41:42 -06:00
|
|
|
<td align="right" width="25%">
|
2011-09-07 02:56:53 -05:00
|
|
|
<tal:comment replace="nothing">Appy (top) navigation</tal:comment>
|
|
|
|
<metal:nav use-macro="here/skyn/navigate/macros/appyNavigate"/>
|
2009-11-17 03:05:19 -06:00
|
|
|
</td>
|
2011-09-07 02:56:53 -05:00
|
|
|
</tr>
|
|
|
|
</table>
|
2009-11-17 03:05:19 -06:00
|
|
|
|
2010-12-06 04:11:40 -06:00
|
|
|
<table tal:define="fieldNames python: tool.getResultColumnsNames(contentType, refField);
|
|
|
|
widgets python: objs[0].getAppyTypesFromNames(fieldNames);"
|
|
|
|
class="listing nosort" width="100%" cellpadding="0" cellspacing="0">
|
2010-04-30 05:05:29 -05:00
|
|
|
<tal:comment replace="nothing">Headers, with filters and sort arrows</tal:comment>
|
2009-06-29 07:06:01 -05:00
|
|
|
<tr>
|
2010-12-06 04:11:40 -06:00
|
|
|
<tal:header repeat="widget widgets">
|
|
|
|
<th tal:define="sortable python: tool.isSortable(widget['name'], contentType, 'search');
|
|
|
|
filterable widget/filterable|nothing;">
|
|
|
|
<span tal:replace="structure python: tool.truncateText(tool.translate(widget['labelId']))"/>
|
|
|
|
<metal:icons use-macro="here/skyn/navigate/macros/sortAndFilter"/>
|
2009-06-29 07:06:01 -05:00
|
|
|
</th>
|
2010-12-06 04:11:40 -06:00
|
|
|
</tal:header>
|
|
|
|
<tal:comment replace="nothing">Object type, shown if instances of several types are shown</tal:comment>
|
2010-04-30 05:05:29 -05:00
|
|
|
<th tal:condition="severalTypes">
|
2010-12-06 04:11:40 -06:00
|
|
|
<span tal:replace="python: tool.translate('root_type')"></span>
|
2009-06-29 07:06:01 -05:00
|
|
|
</th>
|
2010-12-06 04:11:40 -06:00
|
|
|
<tal:comment replace="nothing">Actions</tal:comment>
|
2009-10-18 07:52:27 -05:00
|
|
|
<th tal:content="python: tool.translate('ref_actions')"></th>
|
2009-06-29 07:06:01 -05:00
|
|
|
</tr>
|
|
|
|
|
|
|
|
<tal:comment replace="nothing">Results</tal:comment>
|
2009-12-15 14:30:43 -06:00
|
|
|
<tal:row repeat="obj objs">
|
|
|
|
<tr id="query_row" tal:define="odd repeat/obj/odd"
|
|
|
|
tal:attributes="class python:test(odd, 'even', 'odd')">
|
2009-06-29 07:06:01 -05:00
|
|
|
|
2010-12-06 04:11:40 -06:00
|
|
|
<tal:fields repeat="widget widgets">
|
|
|
|
<tal:comment replace="nothing">Title</tal:comment>
|
|
|
|
<td id="field_title"
|
|
|
|
tal:condition="python: widget['name'] == 'title'">
|
|
|
|
<a tal:define="navInfo python:'search.%s.%s.%d.%d' % (contentType, searchName, repeat['obj'].number()+startNumber, totalNumber);"
|
|
|
|
tal:content="obj/Title" tal:attributes="href python: obj.getUrl(nav=navInfo, page='main')"></a>
|
|
|
|
</td>
|
2009-06-29 07:06:01 -05:00
|
|
|
|
2010-12-06 04:11:40 -06:00
|
|
|
<tal:comment replace="nothing">Workflow state</tal:comment>
|
|
|
|
<td id="field_workflow_state"
|
2011-02-01 04:09:54 -06:00
|
|
|
tal:condition="python: widget['name'] == 'state'"
|
2010-12-06 04:11:40 -06:00
|
|
|
tal:content="python: tool.translate(obj.getWorkflowLabel())">
|
|
|
|
</td>
|
|
|
|
|
|
|
|
<tal:comment replace="nothing">Any other field</tal:comment>
|
2011-02-01 04:09:54 -06:00
|
|
|
<td tal:condition="python: widget['name'] not in ('title', 'state')"
|
2010-12-06 04:11:40 -06:00
|
|
|
tal:attributes="id python:'field_%s' % widget['name']">
|
|
|
|
<tal:field define="contextObj python:obj;
|
|
|
|
layoutType python:'cell';
|
|
|
|
innerRef python:True"
|
|
|
|
condition="python: contextObj.showField(widget['name'], 'view')">
|
|
|
|
<metal:field use-macro="here/skyn/widgets/show/macros/field"/>
|
|
|
|
</tal:field>
|
|
|
|
</td>
|
|
|
|
</tal:fields>
|
2009-06-29 07:06:01 -05:00
|
|
|
|
2009-11-03 08:02:18 -06:00
|
|
|
<tal:comment replace="nothing">Column "Object type", shown if instances of several types are shown</tal:comment>
|
|
|
|
<td tal:condition="severalTypes" id="field_root_type"
|
2009-10-18 07:52:27 -05:00
|
|
|
tal:content="python: tool.translate(obj.portal_type)"></td>
|
2009-06-29 07:06:01 -05:00
|
|
|
|
|
|
|
<tal:comment replace="nothing">Column "Actions"</tal:comment>
|
|
|
|
<td align="right">
|
|
|
|
<table class="no-style-table" cellpadding="0" cellspacing="0">
|
|
|
|
<tr>
|
|
|
|
<tal:comment replace="nothing">Edit the element</tal:comment>
|
2010-09-17 08:32:48 -05:00
|
|
|
<td class="noPadding">
|
2010-10-14 07:43:56 -05:00
|
|
|
<a tal:define="navInfo python:'search.%s.%s.%d.%d' % (contentType, searchName, repeat['obj'].number()+startNumber, totalNumber);"
|
2010-09-17 08:32:48 -05:00
|
|
|
tal:attributes="href python: obj.getUrl(mode='edit', page='main', nav=navInfo)"
|
|
|
|
tal:condition="python: member.has_permission('Modify portal content', obj)">
|
2009-11-25 13:37:22 -06:00
|
|
|
<img title="Edit" i18n:domain="plone" i18n:attributes="title"
|
|
|
|
tal:attributes="src string: $portal_url/skyn/edit.gif"/>
|
2009-06-29 07:06:01 -05:00
|
|
|
</a></td>
|
|
|
|
<tal:comment replace="nothing">Delete the element</tal:comment>
|
2009-10-20 09:57:00 -05:00
|
|
|
<td class="noPadding">
|
2010-12-17 07:46:55 -06:00
|
|
|
<img tal:condition="python: member.has_permission('Delete objects', obj) and obj.mayDelete()"
|
2009-11-24 15:41:42 -06:00
|
|
|
title="Delete" i18n:domain="plone" i18n:attributes="title" style="cursor:pointer"
|
|
|
|
tal:attributes="src string: $portal_url/skyn/delete.png;
|
2010-09-17 08:32:48 -05:00
|
|
|
onClick python:'onDeleteObject(\'%s\')' % obj.UID()"/>
|
2009-10-20 09:57:00 -05:00
|
|
|
</td>
|
2009-06-29 07:06:01 -05:00
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2009-12-15 14:30:43 -06:00
|
|
|
</tal:row>
|
2009-11-17 03:05:19 -06:00
|
|
|
</table>
|
2009-06-29 07:06:01 -05:00
|
|
|
|
2009-11-17 03:05:19 -06:00
|
|
|
<tal:comment replace="nothing">Appy (bottom) navigation</tal:comment>
|
2010-04-30 05:05:29 -05:00
|
|
|
<metal:nav use-macro="here/skyn/navigate/macros/appyNavigate"/>
|
2009-11-17 03:05:19 -06:00
|
|
|
</fieldset>
|
2009-11-03 08:02:18 -06:00
|
|
|
</tal:result>
|
|
|
|
|
2010-01-06 11:36:16 -06:00
|
|
|
<tal:noResult condition="not: objs">
|
|
|
|
<span tal:replace="python: tool.translate('query_no_result')"/>
|
|
|
|
<tal:newSearch condition="python: searchName == '_advanced'">
|
|
|
|
<br/><i class="discreet"><a tal:attributes="href newSearchUrl"
|
|
|
|
tal:content="python: tool.translate('search_new')"></a></i>
|
|
|
|
</tal:newSearch>
|
|
|
|
</tal:noResult>
|
2009-11-03 08:02:18 -06:00
|
|
|
|
|
|
|
</metal:queryResults>
|