activities-events.html

34 lines | 1.176 kB Blame History Raw Download
<div id="wrapper" class="container">
    <div class="row">
        <aside class="span3" ng-include src="'partials/activities-menu.html'"></aside>
        <div id="actions-bg"></div>

        <div id="container-right" class="span9">
            <h1>
                <span class="gray">Events</span>
            </h1>

            <table class="table table-striped table-bordered">
                <thead>
                    <tr>
                        <th>Time</th>
                        <th>Context Path</th>
                        <th>Page</th>
                        <th>Remote Address</th>
                        <th>Country</th>
                        <th>User Agent</th>
                    </tr>
                </thead>
                <tr ng-repeat="event in events">
                    <td>{{event.time | date:'medium'}}</td>
                    <td>{{event.contextPath}}</td>
                    <td>{{event.page}}</td>
                    <td>{{event.remoteAddr}}</td>
                    <td>{{event.country}}</td>
                    <td>{{event.userAgent}}</td>
                </tr>
            </table>
        </div>
        <div id="container-right-bg"></div>
    </div>
</div>