div(ng-controller="ViewVideoCtrl")
    h3
        {{video.title}}
    h5
        {{video.description}}
    h5
        div(ng-controller="CollapseDemoCtrl")
            button(class="btn btn-default", ng-click="isCollapsed = !isCollapsed") Territories
            hr
            div(collapse="isCollapsed") Test
                div(ng-repeat='territory in video.territories')
                    {{territory}}

a(href='/editVideo/{{video._id}}') Edit

div
    p Video js Player preview:
    iframe(src='/api/videojsplayer/{{video._id}}', width='{{video.width}}', height='{{video.height}}', frameBorder="0", allowfullscreen="true", webkitallowfullscreen="true", mozallowfullscreen="true", scrolling="no")