Skip to content

Instantly share code, notes, and snippets.

@dwarfmondo
Last active August 29, 2015 14:05
Show Gist options
  • Save dwarfmondo/8c3bc68044c85b9f90cf to your computer and use it in GitHub Desktop.
Save dwarfmondo/8c3bc68044c85b9f90cf to your computer and use it in GitHub Desktop.
<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