Skip to content

Instantly share code, notes, and snippets.

@Surendev
Created August 18, 2017 13:59
Show Gist options
  • Select an option

  • Save Surendev/1c0a6f5f056b5f195870ad03f00a9839 to your computer and use it in GitHub Desktop.

Select an option

Save Surendev/1c0a6f5f056b5f195870ad03f00a9839 to your computer and use it in GitHub Desktop.
<div class="panel-group" id="accordion">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="/dev#collapseOne"><span
class="glyphicon glyphicon-folder-close">
</span>Bajin 1</a>
</h4>
</div>
<div id="collapseOne" class="panel-collapse collapse in">
<div class="panel-body">
<table class="table">
<tr>
<td>
field 1
</td>
<td>
<input type="checkbox"/> Read
</td>
<td>
<input type="checkbox"/> Update
</td>
</tr>
</table>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="/dev#collapseTwo">
<span class="glyphicon glyphicon-th">
</span>Bajin 2</a>
</h4>
</div>
<div id="collapseTwo" class="panel-collapse collapse">
<div class="panel-body">
<table class="table">
<tr ng-repeat="module in modules">
<td>
field 2
</td>
<td>
<input type="checkbox"/> Read
</td>
<td>
<input type="checkbox"/> Update
</td>
</tr>
</table>
</div>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment