script(data-id="events-dir-alt", type="text/ng-template")
    div(id="event-api-widget", class="widget event-widget")
        div(class="widget-title") {{ title }}
        div(class="widget-body")
            div(class="day")
                div(class="date")
                    ul(class="nav nav-tabs")
                        li: a(href="#", onclick="event.preventDefault()") {{ startTime() | date:datefmt() }}
            div(class="data table")
                div(class="header")
                    div(class="header-row")
                        div(class="cell", data-ng-repeat="col in columns")
                            span {{ locale(col) }}
                div(class="body")
                    div(class="body-row", data-ng-repeat="row in data.events | orderBy : 'startTime'")
                        div(class="cell", data-ng-repeat="col in columns")
                            span
                                span(data-ng-show="col=='action'", class="icon-action", data-ng-style="{'background-color': colors[ row[col] ] }")
                                {{ switchcase(col, row) }}
