initial
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
<cfparam name="ATTRIBUTES.query" type="query"/>
|
||||
<cfif thisTag.executionMode IS "end" OR NOT thisTag.hasEndTag>
|
||||
<table class="worktable">
|
||||
<tr>
|
||||
<cfoutput>
|
||||
<cfloop list=#queryColumnList(ATTRIBUTES.query)# item="col">
|
||||
<th>#col#</th>
|
||||
</cfloop>
|
||||
</cfoutput>
|
||||
</tr>
|
||||
<cfoutput query=#ATTRIBUTES.query#>
|
||||
<tr>
|
||||
<cfloop list=#queryColumnList(ATTRIBUTES.query)# item="col">
|
||||
<td>#ATTRIBUTES.query[col]#</td>
|
||||
</cfloop>
|
||||
</tr>
|
||||
</cfoutput>
|
||||
</table>
|
||||
</cfif>
|
||||
Reference in New Issue
Block a user