mirror of https://github.com/itflow-org/itflow
Small UI touchups under campaign
This commit is contained in:
parent
45ee6a3767
commit
c728fee7c2
10
campaign.php
10
campaign.php
|
|
@ -60,7 +60,7 @@ if(isset($_GET['campaign_id'])){
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h1><?php echo $campaign_name; ?></h1>
|
<h5><?php echo $campaign_name; ?></h5>
|
||||||
<div class="p-2 badge badge-pill badge-<?php echo $campaign_badge_color; ?>">
|
<div class="p-2 badge badge-pill badge-<?php echo $campaign_badge_color; ?>">
|
||||||
<?php echo $campaign_status; ?>
|
<?php echo $campaign_status; ?>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -79,28 +79,28 @@ if(isset($_GET['campaign_id'])){
|
||||||
<div class="col-sm-1">
|
<div class="col-sm-1">
|
||||||
<div class="card card-body card-outline card-success text-center elevation-2">
|
<div class="card card-body card-outline card-success text-center elevation-2">
|
||||||
<h6 class="text-success">Sent</h6>
|
<h6 class="text-success">Sent</h6>
|
||||||
<h1><?php echo "$sent_count/$subscriber_count"; ?></h1>
|
<h3><?php echo "$sent_count/$subscriber_count"; ?></h3>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-sm-1">
|
<div class="col-sm-1">
|
||||||
<div class="card card-body card-outline card-secondary text-center elevation-2">
|
<div class="card card-body card-outline card-secondary text-center elevation-2">
|
||||||
<h6 class="text-secondary">Opened</h6>
|
<h6 class="text-secondary">Opened</h6>
|
||||||
<h1><?php echo "$open_count/$subscriber_count"; ?></h1>
|
<h3><?php echo "$open_count/$subscriber_count"; ?></h3>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-sm-1">
|
<div class="col-sm-1">
|
||||||
<div class="card card-body card-outline card-info text-center elevation-2">
|
<div class="card card-body card-outline card-info text-center elevation-2">
|
||||||
<h6 class="text-info">Clicked</h6>
|
<h6 class="text-info">Clicked</h6>
|
||||||
<h1><?php echo "$click_count/$subscriber_count"; ?></h1>
|
<h3><?php echo "$click_count/$subscriber_count"; ?></h3>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-sm-1">
|
<div class="col-sm-1">
|
||||||
<div class="card card-body card-outline card-danger text-center elevation-2">
|
<div class="card card-body card-outline card-danger text-center elevation-2">
|
||||||
<h6 class="text-danger">Failed</h6>
|
<h6 class="text-danger">Failed</h6>
|
||||||
<h1><?php echo "$fail_count/$subscriber_count"; ?></h1>
|
<h3><?php echo "$fail_count/$subscriber_count"; ?></h3>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue