Last active
August 29, 2015 14:05
-
-
Save dwarfmondo/8c3bc68044c85b9f90cf to your computer and use it in GitHub Desktop.
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="row"> | |
<header class="small-12 columns table" role="heading"> | |
<div class="table"> | |
<div class="col shrink"> | |
<h2>@Model.Description</h2> | |
</div> | |
<div class="col collapse-left-10"> | |
@if (Model.Active) | |
{ | |
<span class="label success round uppercase"> | |
Active | |
</span> | |
} | |
else | |
{ | |
<span class="label secondary round uppercase"> | |
Inactive | |
</span> | |
} | |
</div> | |
@if (User.Has(Rights.Manage.GeneralLedger.ChartOfAccounts, AccessLevel.Full)) | |
{ | |
<div class="col shrink text-right"> | |
<a href="" class="button hollow small margin-bottom-0"> | |
<span class="ss-write ss-standard icon-space">Edit</span> | |
</a> | |
</div> | |
} | |
</div> | |
</header> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment