D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
psa
/
admin
/
application
/
default
/
views
/
scripts
/
partials
/
forms
/
Filename :
two-columns.phtml
back
Copy
<?php // Copyright 1999-2025. WebPros International GmbH. All rights reserved. ?> <div class="form-row"<?php echo $this->id ? ' id="' . $this->id . '"' : ''; ?>> <div class="field-name"> <?php echo $this->label ?> </div> <div class="field-value"> <div class="text-value"> <div class="two-cols-block clearfix"> <div class="first-col"> <div class="column-box"> <div class="form-box"> <?php echo $this->elementPart($this->element->getElement($this->firstColumn))->content(); ?> </div> </div> </div> <div class="second-col"> <div class="column-box"> <div class="form-box"> <?php echo $this->elementPart($this->element->getElement($this->secondColumn))->content(); ?> </div> </div> </div> </div> </div> </div> </div>