Skip to content

Commit

Permalink
Dev Minor interface fix
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Jun 17, 2016
1 parent 00a0e1d commit 69889c0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 15 deletions.
2 changes: 1 addition & 1 deletion application/views/admin/export/spss_view.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<div class="col-sm-10">
<?php $this->widget('yiiwheels.widgets.buttongroup.WhButtonGroup', array(
'name' => 'completionstate',
'value'=> incompleteAnsFilterState() ,
'value'=> 'all' ,
'selectOptions'=>array(
"all"=>gT("All responses",'unescaped'),
"complete"=>gT("Complete only",'unescaped'),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,15 @@

<div class='form-group'>
<label for='completionstate' class="col-sm-4 control-label"><?php eT("Include:"); ?> </label>
<div class="btn-group hidden-sm hidden-xs pull-left" data-toggle="buttons">
<label class="btn btn-default active">
<input name="completionstate" value="all" type="radio" checked >
<?php eT("All responses"); ?>
</label>
<label class="btn btn-default">
<input name="completionstate" value="complete" type="radio" >
<?php eT("Completed responses only"); ?>
</label>
<label class="btn btn-default">
<input name="completionstate" value="incomplete" class="active" type="radio" >
<?php eT("Incomplete responses only"); ?>
</label>
</div>
<?php $this->widget('yiiwheels.widgets.buttongroup.WhButtonGroup', array(
'name' => 'completionstate',
'value'=> 'all' ,
'selectOptions'=>array(
"all"=>gT("All responses",'unescaped'),
"complete"=>gT("Complete only",'unescaped'),
"incomplete"=>gT("Incomplete only",'unescaped'),
)
));?>
</div>

<div class='form-group'>
Expand Down

0 comments on commit 69889c0

Please sign in to comment.