mirror of https://github.com/itflow-org/itflow
uri dropdown
This commit is contained in:
parent
2fa07e4e46
commit
4e5fd048f7
|
|
@ -431,11 +431,26 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli, "SELECT FOUND_ROWS()"));
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
<?php if ( !empty($asset_uri) || !empty($asset_uri_2) ) { ?>
|
||||||
<?php if (!empty($asset_uri)) { ?>
|
<div class="dropdown dropleft text-center">
|
||||||
<a class="btn btn-default btn-sm" href="<?php echo $asset_uri; ?>" target="_blank"><i class="fas fa-fw fa-external-link-alt"></i></a>
|
<button class="btn btn-default btn-sm" type="button" data-toggle="dropdown">
|
||||||
|
<i class="fa fa-fw fa-external-link-alt"></i>
|
||||||
|
</button>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
<?php if ($asset_uri) { ?>
|
||||||
|
<a href="<?php echo $asset_uri; ?>" alt="<?php echo $asset_uri; ?>" target="_blank" class="dropdown-item" >
|
||||||
|
<i class="fa fa-fw fa-external-link-alt"></i> <?php echo truncate($asset_uri,40); ?>
|
||||||
|
</a>
|
||||||
|
<?php } ?>
|
||||||
|
<?php if ($asset_uri_2) { ?>
|
||||||
|
<div class="dropdown-divider"></div>
|
||||||
|
<a href="<?php echo $asset_uri_2; ?>" target="_blank" class="dropdown-item" >
|
||||||
|
<i class="fa fa-fw fa-external-link-alt"></i> <?php echo truncate($asset_uri_2,40); ?>
|
||||||
|
</a>
|
||||||
|
<?php } ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
|
||||||
<div class="dropdown dropleft text-center">
|
<div class="dropdown dropleft text-center">
|
||||||
<button class="btn btn-secondary btn-sm" type="button" data-toggle="dropdown"><i class="fas fa-ellipsis-h"></i></button>
|
<button class="btn btn-secondary btn-sm" type="button" data-toggle="dropdown"><i class="fas fa-ellipsis-h"></i></button>
|
||||||
<div class="dropdown-menu">
|
<div class="dropdown-menu">
|
||||||
|
|
|
||||||
|
|
@ -175,8 +175,25 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli, "SELECT FOUND_ROWS()"));
|
||||||
<td><?php echo $login_uri_display; ?></td>
|
<td><?php echo $login_uri_display; ?></td>
|
||||||
<td class="text-center">
|
<td class="text-center">
|
||||||
<div class="btn-group">
|
<div class="btn-group">
|
||||||
<?php if ($login_uri) { ?>
|
<?php if ( !empty($login_uri) || !empty($login_uri_2) ) { ?>
|
||||||
<a href="<?php echo $login_uri; ?>" target="_blank" class="btn btn-default btn-sm"><i class="fa fa-fw fa-external-link-alt"></i></a>
|
<div class="dropdown dropleft text-center">
|
||||||
|
<button class="btn btn-default btn-sm" type="button" data-toggle="dropdown">
|
||||||
|
<i class="fa fa-fw fa-external-link-alt"></i>
|
||||||
|
</button>
|
||||||
|
<div class="dropdown-menu">
|
||||||
|
<?php if ($login_uri) { ?>
|
||||||
|
<a href="<?php echo $login_uri; ?>" alt="<?php echo $login_uri; ?>" target="_blank" class="dropdown-item" >
|
||||||
|
<i class="fa fa-fw fa-external-link-alt"></i> <?php echo truncate($login_uri,40); ?>
|
||||||
|
</a>
|
||||||
|
<?php } ?>
|
||||||
|
<?php if ($login_uri_2) { ?>
|
||||||
|
<div class="dropdown-divider"></div>
|
||||||
|
<a href="<?php echo $login_uri_2; ?>" target="_blank" class="dropdown-item" >
|
||||||
|
<i class="fa fa-fw fa-external-link-alt"></i> <?php echo truncate($login_uri_2,40); ?>
|
||||||
|
</a>
|
||||||
|
<?php } ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<div class="dropdown dropleft text-center">
|
<div class="dropdown dropleft text-center">
|
||||||
<button class="btn btn-secondary btn-sm" type="button" data-toggle="dropdown">
|
<button class="btn btn-secondary btn-sm" type="button" data-toggle="dropdown">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue