Reply.html 775 Bytes
<div id="NMEC_${id}" class="wev-comp-${compType}">
	<div class="wev-reply-btn" title="${btnName}">$${btnName}</div>
	<div class="wev-reply-formwrap">
		<form class="wev-reply-form"  method="post" action="${actionUrl}">
		{@each params as param,index}
		{@if param.isSystem == '1'}
			<input type="text" class="wev-reply-content" name="${param.paramName}" placeholder="${placeholder}" />
		{@else}
			<input type="hidden"  name="${param.paramName}" value="${param.paramValue}" paramkey="${param.paramKey}"/>
		{@/if}
		{@/each}
		{@if autoSave}
			<input type="hidden"  name="datasource" value="${datasource}" />
			<input type="hidden"  name="tablename" value="${tablename}" />
			<input type="hidden"  name="modelid" value="${modelid}" />
		{@/if}
		</form>
	</div>
</div>