Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
HTMLHelper::_('jquery.token');
HTMLHelper::_('behavior.formvalidator');
HTMLHelper::_('behavior.keepalive');
HTMLHelper::_('formbehavior.chosen', 'select');

$options['relative'] = true;
JHtml::_('script', 'com_tjcertificate/tjCertificateService.min.js', $options);
Expand Down Expand Up @@ -50,14 +49,14 @@
$tmpl = $isModal || $input->get('tmpl', '', 'cmd') === 'component' ? '&tmpl=component' : '';
?>
<div class="tj-page">
<div class="row-fluid">
<div class="row">
<form action="<?php echo Route::_('index.php?option=com_tjcertificate&view=template&layout=edit&id=' . (int) $this->item->id . $clientUrlAppend, false);
?>" method="post" enctype="multipart/form-data" name="adminForm" id="adminForm" class="form-validate">
<div class="form-vertical">
<?php echo HTMLHelper::_('bootstrap.startTabSet', 'myTab', array('active' => 'general')); ?>
<?php echo HTMLHelper::_('bootstrap.addTab', 'myTab', 'general', Text::_('COM_TJCERTIFICATE_VIEW_CERTIFICATE_TEMPLATES')); ?>
<div class="row-fluid">
<div class="span8">
<div class="row">
<div class="col-md-8">
<?php echo $this->form->renderField('title'); ?>
<?php

Expand All @@ -84,7 +83,7 @@
<?php echo $this->form->getInput('checked_out'); ?>
<?php echo $this->form->getInput('checked_out_time'); ?>
</div>
<div class="span4">
<div class="col-md-4">
<div class="alert alert-info">
<?php echo Text::_('COM_TJCERTIFICATE_CERTIFICATE_TEMPLATE_CSS_EDITOR_INFO'); ?>
</div>
Expand All @@ -97,8 +96,6 @@
</tr>
</thead>
</table>
</div>
<div class="span4">
<div class="alert alert-info">
<?php echo Text::_('COM_TJCERTIFICATE_CERTIFICATE_TEMPLATE_REPLACEMENT_TAG_INFO'); ?>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
HTMLHelper::addIncludePath(JPATH_COMPONENT . '/helpers/html');
HTMLHelper::_('bootstrap.tooltip');
HTMLHelper::_('behavior.multiselect');
HTMLHelper::_('formbehavior.chosen', 'select');

$listOrder = $this->escape($this->state->get('list.ordering'));
$listDirn = $this->escape($this->state->get('list.direction'));
Expand Down