change how to use smarty variables
This commit is contained in:
@@ -16,7 +16,7 @@
|
||||
<li><a href="{url path='/admin/home'}">{intl l="Home"}</a></li>
|
||||
<li><a href="{url path='/admin/configuration'}">{intl l="Configuration"}</a></li>
|
||||
<li><a href="{url path='/admin/configuration/attributes'}">{intl l="Attributes"}</a></li>
|
||||
<li>{intl l='Editing attribute "%name"' name=$TITLE}</li>
|
||||
<li>{intl l='Editing attribute "%name"' name={$TITLE}}</li>
|
||||
</ul>
|
||||
|
||||
<div class="row">
|
||||
@@ -24,7 +24,7 @@
|
||||
<div class="row">
|
||||
|
||||
<div class="col-md-12 title title-without-tabs">
|
||||
{intl l='Edit attribute "%name"' name=$TITLE}
|
||||
{intl l='Edit attribute "%name"' name={$TITLE}}
|
||||
</div>
|
||||
|
||||
<div class="col-md-12">
|
||||
@@ -186,7 +186,7 @@
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div class="alert alert-error">
|
||||
{intl l="Sorry, attribute ID=%id was not found." id=$attribute_id}
|
||||
{intl l="Sorry, attribute ID=%id was not found." id={$attribute_id}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -223,10 +223,10 @@
|
||||
{loop type="lang" name="current-edit-lang" id="$edit_language_id"}
|
||||
<div class="input-group">
|
||||
<input type="text" id="{$label_attr.for}" required="required" name="{$name}" class="form-control" value="{$value}" title="{intl l='Attribute title'}" placeholder="{intl l='Title'}">
|
||||
<span class="input-group-addon"><img src="{image file="assets/img/flags/{$CODE}.png"}" alt="{intl l=$TITLE}" /></span>
|
||||
<span class="input-group-addon"><img src="{image file="assets/img/flags/{$CODE}.png"}" alt="{intl l={$TITLE}}" /></span>
|
||||
</div>
|
||||
|
||||
<div class="help-block">{intl l="Enter here the value in the current edit language (%title)" title=$TITLE}</div>
|
||||
<div class="help-block">{intl l="Enter here the value in the current edit language (%title)" title={$TITLE}}</div>
|
||||
|
||||
{form_field form=$form field='locale'}
|
||||
<input type="hidden" name="{$name}" value="{$LOCALE}" />
|
||||
|
||||
Reference in New Issue
Block a user