Created
December 30, 2016 09:09
-
-
Save mohsin/1383e426d2693b24140448878160cf06 to your computer and use it in GitHub Desktop.
The toolbar partial
This file contains hidden or 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
| <div class="control-toolbar"> | |
| <?php if (count($variants) == 0): ?> | |
| <div class="toolbar-item callout fade in callout-danger"> | |
| <div class="form-control content" style="padding: 10px 20px 10px;"> | |
| <p>You must create at least one app with one variant to see values in this section.</p> | |
| </div> | |
| </div> | |
| <?php else: ?> | |
| <div class="toolbar-item toolbar-primary"> | |
| <div id="dropdown-variant" data-control="toolbar"> | |
| <?= $this->makePartial('dropdown') ?> | |
| </div> | |
| </div> | |
| <?php endif ?> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment