Improvements to NAVBAR, updates to StaticList methods, other minor items Enable product category rendering and other minor improvements Added ADSL-large category price plan
27 lines
915 B
PHP
27 lines
915 B
PHP
<div id="translate">
|
|
<div class="span6">
|
|
<?php echo Form::input('product_translate[name]',$o->name,array(
|
|
'label'=>'Category Title',
|
|
'placeholder'=>'Descriptive Title',
|
|
'class'=>'span3',
|
|
'required',
|
|
'help-block'=>'The title is shown when uses search products by category')); ?>
|
|
</div>
|
|
<div class="span9">
|
|
<?php echo Form::textarea('product_translate[description_short]',$o->description_short,array(
|
|
'label'=>'Short Product Description',
|
|
'placeholder'=>'Short Description',
|
|
'class'=>'span6',
|
|
'required',
|
|
'help-block'=>'Complete description of this category')); ?>
|
|
</div>
|
|
<div class="span9">
|
|
<?php echo Form::textarea('product_translate[description_full]',$o->description_full,array(
|
|
'label'=>'Full Product Description',
|
|
'placeholder'=>'Full Description',
|
|
'class'=>'span6',
|
|
'required',
|
|
'help-block'=>'Complete description of this category')); ?>
|
|
</div>
|
|
</div>
|