<div class="row" id="">
    <div class="col-md-12">
        <div class="box-header bg-light-blue bg-light-blue-gradient">
            <h3 class="box-title custom-titles">Courses List</h3>
            <div class="box-tools pull-right"></div>
        </div>
        <table id="emoticonsetting" class="admintable generaltable">
            <thead>
                <tr>
                    <th>{{#str}} sno, local_professor {{/str}}</th>
                    <th>{{#str}} c_category, local_professor {{/str}}</th>
                    <th>{{#str}} c_code, local_professor {{/str}}</th>
                    <th>{{#str}} cname, local_professor {{/str}}</th>
                    <th>{{#str}} curl, local_professor {{/str}}</th>
                    <th>{{#str}} college, local_professor {{/str}}</th>

                </tr>
            </thead>
            <tbody>
                {{#courses}}
                <tr>
                    <td class="c0">{{sino}}</td>
                    <td class="c0">{{c_category}}</td>
                    <td class="c0">{{c_code}}</td>
                    <td class="c1">{{coursename}}</td>
                    <td class="c2">
                        <span class="course-item-actions item-actions">
                            <a class="action-edit" href="{{courseurl}}">
                                <button type="button" class="btn btn-outline-success fullcard">
                                    <i class="icon fa fa-share " aria-hidden="true" title="View" aria-label="View"></i> View 
                                </button>
                            </a>
                        </span>
                    </td>
                    <td class="c3">{{{college}}}</td>
                </tr>
                {{/courses}}

                {{^courses}}
                <tr>
                    <td></td>
                    <td class="text-center">You are not enrolled to any courses!</td>
                    <td></td>
                    <td></td>
                </tr>
                {{/courses}}

            </tbody>
        </table>
    </div>
</div>