13 lines
573 B
PHTML
13 lines
573 B
PHTML
<div class="ui-widget ui-widget-content block-shadow simple-formblock clearfix padded-strong edit-md-dialog">
|
|
<div class="inner_editor_title">
|
|
<?php if ($this->permissionDenied) { ?> <h3><?php echo _("You do not have permission to edit this track.") ?></h3> <?php } ?>
|
|
<H2><?php
|
|
if ($this->permissionDenied) {
|
|
echo(_("Viewing "));
|
|
} else {
|
|
echo(_("Editing "));
|
|
}?>"<span class="title_obj_name"><?php echo($this->title); ?></span>"</H2>
|
|
</div>
|
|
<?php echo $this->form; ?>
|
|
</div>
|