Skip to content

Commit

Permalink
Fix Google base template layout.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesallsup committed May 27, 2015
1 parent 19e8c66 commit cb6a7da
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions upload/admin/view/template/feed/google_base.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@
</ul>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title"><i class="fa fa-pencil"></i> <?php echo $text_edit; ?></h3>
<div class="container-fluid">
<?php if ($error_warning) { ?>
<div class="alert alert-danger"><i class="fa fa-exclamation-circle"></i> <?php echo $error_warning; ?>
<button type="button" class="close" data-dismiss="alert">&times;</button>
</div>
<div class="panel-body">
<div class="container-fluid">
<?php if ($error_warning) { ?>
<div class="alert alert-danger"><i class="fa fa-exclamation-circle"></i> <?php echo $error_warning; ?>
<button type="button" class="close" data-dismiss="alert">&times;</button>
</div>
<?php } ?>
<?php } ?>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title"><i class="fa fa-pencil"></i> <?php echo $text_edit; ?></h3>
</div>
<div class="panel-body">
<form action="<?php echo $action; ?>" method="post" enctype="multipart/form-data" id="form-google-base" class="form-horizontal">
<div class="form-group">
<label class="col-sm-2 control-label" for="input-status"><?php echo $entry_status; ?></label>
Expand All @@ -42,7 +42,7 @@
<div class="form-group">
<label class="col-sm-2 control-label" for="input-data-feed"><?php echo $entry_data_feed; ?></label>
<div class="col-sm-10">
<textarea rows="5" readonly="readonly" id="input-data-feed" class="form-control"><?php echo $data_feed; ?></textarea>
<textarea rows="5" id="input-data-feed" class="form-control" readonly><?php echo $data_feed; ?></textarea>
</div>
</div>
</form>
Expand Down

0 comments on commit cb6a7da

Please sign in to comment.