This commit is contained in:
Roman Pyrih
2024-11-26 16:48:33 +01:00
parent 1994d995d8
commit 22bf30902e
10 changed files with 494 additions and 218 deletions

View File

@@ -22,13 +22,13 @@
{l s='Edit customer comment' mod='ets_blog'}
</div>
<section class="form-fields">
<div class="form-group row ">
<div class="form-group row 1">
<label class="col-md-3 form-control-label" for="subject">{l s='Subject' mod='ets_blog'}<span class="required">*</span></label>
<div class="col-md-9">
<input id="subject" class="form-control" type="text" value="{if isset($smarty.post.subject)}{$smarty.post.subject|escape:'html':'UTF-8'}{else}{if $ets_comment->id}{$ets_comment->subject|escape:'html':'UTF-8'}{/if}{/if}" name="subject" title="{if $ets_comment->id}{$ets_comment->subject|escape:'html':'UTF-8'}{/if}" />
</div>
</div>
<div class="form-group row">
<div class="form-group row 2">
<label class="col-md-3 form-control-label" for="rating">{l s='Rating' mod='ets_blog'}</label>
<div class="col-md-9">
<select id="rating" class="form-control fixed-width-xl" name="rating">
@@ -40,7 +40,7 @@
</select>
</div>
</div>
<div class="form-group row ">
<div class="form-group row 3">
<label class="col-md-3 form-control-label" for="comment">{l s='Comment' mod='ets_blog'}<span class="required">*</span></label>
<div class="col-md-9">
<textarea rows="5" class="form-control" name="comment" id="comment">{if isset($smarty.post.comment)}{$smarty.post.comment|escape:'html':'UTF-8'}{else}{if $ets_comment->id}{$ets_comment->comment nofilter}{/if}{/if}</textarea>