mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
e1a7030306
Also remove some deprecated code from UserDefinedFormControllerTest and allow simple or starter theme to be used in the test.
12 lines
318 B
Scheme
Executable File
12 lines
318 B
Scheme
Executable File
<%-- Note: content is already escaped in UserDefinedFormController::process --%>
|
|
$Body.RAW
|
|
|
|
<% if not $HideFormData %>
|
|
<dl>
|
|
<% loop $Fields %>
|
|
<dt><strong><% if $Title %>$Title<% else %>$Name<% end_if %></strong></dt>
|
|
<dd style="margin: 4px 0 14px 0">$FormattedValue</dd>
|
|
<% end_loop %>
|
|
</dl>
|
|
<% end_if %>
|