% layout 'index';
<div class="module <%= $module %>module" id="<%= $module %>module">
% if($module eq 'import'){
<style>
#page-wrapper{
    margin-top:60px;
}
</style>
% }
            <div class="row">
                <div class="col-lg-12">
                    <h1 class="page-header"><%= $title %></h1>
                </div>
                <!-- /.col-lg-12 -->
            </div>


<div class="row" id="<%= $module %>moduleform" style="display:block;">
        <div class="col-xs-12">
% if($frm){            
%= include 'snippets/form', f => $frm, buttons => $butt;            
% }
        </div>
</div>
% if($table){
<div class="row" id="<%= $module %>moduletable" style="display:block;>
        <div class="table-responsive col-xs-12">
            <table id="<%= $table %>" class="table table-bordered" style="width:100%;">
                <thead>
                </thead>
            </table>
        </div>
</div>   
<script id="<%= $table %>-template" type="text/x-tmpl">
        <div class="table-responsive col-xs-12">
            <table id="<%= $table %>" class="table table-bordered" style="width:100%;">
                <thead>
                </thead>
            </table>
        </div>
</script>
% }
</div> 