Skip to content

Commit

Permalink
Update pull.php
Browse files Browse the repository at this point in the history
Signed-off-by: ArchBlood <[email protected]>
  • Loading branch information
ArchBlood authored Feb 20, 2024
1 parent c2a4533 commit 3838529
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions views/git/pull.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,18 @@
$this->params['breadcrumbs'][] = $this->title;
?>

<div class="composer-git-pull">
<?= Html::tag('h1', Html::encode($this->title)); ?>
<div class="panel panel-default">
<div class="panel-heading">
<?= Html::tag('h1', Html::encode($this->title)); ?>
</div>

<?= $message ?>

<?php if (!empty($output)): ?>
<?= Html::tag('h2', 'Output'); ?>
<?= Html::tag('pre', implode("\n", $output)); ?>
<?php endif; ?>
<div class="panel-body">
<?= Html::tag('h2', 'Result'); ?>
<p><?= $message ?></p>

<?php if (!empty($output)): ?>
<?= Html::tag('h2', 'Output'); ?>
<pre><?= Html::encode(implode("\n", $output)) ?></pre>
<?php endif; ?>
</div>
</div>

0 comments on commit 3838529

Please sign in to comment.