research: payg-report полная копия репы (все файлы, без .git)

This commit is contained in:
2026-05-30 14:23:10 +03:00
parent 032b41b3f5
commit 876e03b78b
180 changed files with 13907 additions and 0 deletions
@@ -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>