-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
153 additions
and
255 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
<table class="table table-striped w-100"> | ||
<thead> | ||
<tr> | ||
<th class="attr">Attribute name</th> | ||
<th class="attr definition">Attribute description</th> | ||
<th class="attr action">Action</th> | ||
<th class="attr"><?php echo _txt('pl.grouperlite.table.attribute-name'); ?></th> | ||
<th class="attr definition"><?php echo _txt('pl.grouperlite.table.attribute-description'); ?></th> | ||
<th class="attr action"><?php echo _txt('pl.grouperlite.table.action'); ?></th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<?php foreach ($attributes as $attr): ?> | ||
<?php foreach ($attributes as $attr) : ?> | ||
<tr> | ||
<td><?php echo $attr['displayName']; ?></td> | ||
<td><?php echo $attr['description'] ?></td> | ||
<td> | ||
<a href="<?php echo $baseUrl.$attr['uuid']; ?>" class="btn btn-grouper btn btn-primary btn btn-raised btn btn-block" target="_blank" role="button"> | ||
View <i class="fa fa-external-link"></i> | ||
<a href="<?php echo $baseUrl . $attr['uuid']; ?>" class="btn btn-grouper btn btn-primary btn btn-raised btn btn-block" target="_blank" role="button"> | ||
<?php echo _txt('pl.grouperlite.action.view'); ?> <i class="fa fa-external-link"></i> | ||
</a> | ||
</td> | ||
</tr> | ||
<?php endforeach; ?> | ||
</tbody> | ||
</table> | ||
<?php if (count($attr) < 1) : ?> | ||
<div class="alert alert-info"> | ||
<p class="lead mb-0 text-center">No attributes defined.</p> | ||
</div> | ||
<div class="alert alert-info"> | ||
<p class="lead mb-0 text-center"><?php echo _txt('pl.grouperlite.attributes.zero-state'); ?></p> | ||
</div> | ||
<?php endif; ?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.