Sha256: 1cfa65e7fd7e9e6092d57acfb3d8a55ad922704f1c0075b7eafed58213918d01
Contents?: true
Size: 502 Bytes
Versions: 226
Compression:
Stored size: 502 Bytes
Contents
#** * Called for each matching document but then * calls one of product_doc, join_doc or richtext_doc * depending on which fields the doc has *# #set($docId = $doc.getFieldValue('id')) <div class="result-document"> ## Has a "name" field ? #if($doc.getFieldValue('name')) #parse("product_doc.vm") ## Has a "compName_s" field ? #elseif($doc.getFieldValue('compName_s')) #parse("join_doc.vm") ## Fallback to richtext_doc #else #parse("richtext_doc.vm") #end </div>
Version data entries
226 entries across 226 versions & 3 rubygems