Skip to content

Commit

Permalink
Dev: Fixed margin in table (edit survey group first tab)
Browse files Browse the repository at this point in the history
  • Loading branch information
thedirtypanda committed Jul 14, 2021
1 parent 10e4dc9 commit d3865e3
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions application/views/admin/surveysgroups/update.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,27 @@

<div class="row">
<ul class="nav nav-tabs" id="surveygrouptabsystem" role="tablist">
<li class="active"><a href="#surveysInThisGroup"><?php eT('Surveys in this group'); ?></a></li>
<li class="active">
<a href="#surveysInThisGroup">
<?php eT('Surveys in this group'); ?>
</a>
</li>
<?php if($model->hasPermission('group','read')):?>
<li><a href="#settingsForThisGroup"><?php eT('Settings for this survey group'); ?></a></li>
<li>
<a href="#settingsForThisGroup">
<?php eT('Settings for this survey group'); ?>
</a>
</li>
<?php endif;?>
<li><a href="#templateSettingsFortThisGroup"><?php eT('Themes options for this survey group'); ?></a></li>
<li>
<a href="#templateSettingsFortThisGroup">
<?php eT('Themes options for this survey group'); ?>
</a>
</li>
</ul>
<div class="tab-content">
<div id="surveysInThisGroup" class="tab-pane active">
<div class="col-sm-12 list-surveys">
<div class="list-surveys">
<h2><?php eT('Surveys in this group:'); ?></h2>
<?php
$this->widget('ext.admin.survey.ListSurveysWidget.ListSurveysWidget', array(
Expand All @@ -34,7 +46,6 @@
<?php
if (is_a($templateOptionsModel, 'TemplateConfiguration')){
Yii::app()->getController()->renderPartial('/themeOptions/surveythemelist', array( 'oSurveyTheme'=> $templateOptionsModel, 'pageSize'=>$pageSize ));
//$this->renderPartial('//themeOptions/surveythemelist', array( 'oSurveyTheme'=> $templateOptionsModel, 'pageSize'=>$pageSize ));
}
?>
</div>
Expand Down

0 comments on commit d3865e3

Please sign in to comment.