Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Resources/Private/Partials/Form/Page.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<f:for each="{page.fields}" as="field" iteration="iteration">
<vh:misc.createRowTags columns="{settings.styles.numberOfColumns}" class="{settings.styles.framework.rowClasses}" iteration="{iteration}">
<f:render partial="Form/Field/{vh:String.Upper(string:field.type)}" arguments="{field:field}"/>
<f:render partial="Form/Field/{vh:string.upper(string:field.type)}" arguments="{field:field}"/>
</vh:misc.createRowTags>
</f:for>

Expand Down
4 changes: 2 additions & 2 deletions Resources/Private/Templates/Form/PowermailAll.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@
<f:section name="mail">
<table class="powermail_all">
<f:for each="{mail.answers}" as="answer">
<f:if condition="{vh:Condition.isNotExcludedFromPowermailAll(answer:answer, type:type, settings:settings)}">
<f:if condition="{vh:condition.isNotExcludedFromPowermailAll(answer:answer, type:type, settings:settings)}">
<f:if condition="{settings.misc.showOnlyFilledValues}">
<f:then>
<f:if condition="{vh:Condition.IsNotEmpty(val:'{answer.value}')}">
<f:if condition="{vh:condition.isNotEmpty(val:'{answer.value}')}">
<f:render partial="PowermailAll/Mail" arguments="{_all}" />
</f:if>
</f:then>
Expand Down
4 changes: 2 additions & 2 deletions Resources/Private/Templates/Module/ExportXls.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<th>
<f:if condition="{vh:condition.isNumber(val:fieldUid)}">
<f:then>
<vh:Getter.GetFieldLabelFromUid uid="{fieldUid}" />
<vh:getter.getFieldLabelFromUid uid="{fieldUid}" />
</f:then>
<f:else>
<f:translate key="\In2code\Powermail\Domain\Model\Mail.{vh:string.underscoredToLowerCamelCase(val:fieldUid)}" extensionName="powermail" />
Expand Down Expand Up @@ -65,7 +65,7 @@
<f:format.date format="%M:%S"><vh:misc.variableInVariable obj="{mail}" prop="{fieldUid}" /></f:format.date>
</f:then>
<f:else>
<f:format.date format="H:i:s"><vh:Misc.VariableInVariable obj="{mail}" prop="{fieldUid}" /></f:format.date>
<f:format.date format="H:i:s"><vh:misc.variableInVariable obj="{mail}" prop="{fieldUid}" /></f:format.date>
</f:else>
</f:if>
</f:else>
Expand Down