-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6228bbd
commit c1cd547
Showing
16 changed files
with
279 additions
and
185 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<ul class="uib-dropdown-menu" role="menu" aria-labelledby="button-template-url"> | ||
|
||
<li role="menuitem" ng-repeat="request in searchHistory"><a href="#" ng-click="repeatSearch(request)" ng-bind-html="formatRequest(request)"></a></li> | ||
|
||
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,3 @@ | ||
<div class="row"> | ||
<div ag-grid="gridOptions" class="ag-bootstrap" style="height: 600px; width: 100%; text-align: left; margin-top: 30px"></div> | ||
</div> | ||
<!-- | ||
<div class="row"> | ||
<div class="col-md-5"></div> | ||
<div class="col-md-10" style="text-align: center"> | ||
<dir-pagination-controls on-page-change="pageChanged(newPageNumber)" pagination-id="searches"></dir-pagination-controls> | ||
</div> | ||
<div class="col-md-5" style="text-align: right"> | ||
<div class="btn-group" style="margin-bottom: 5px"> | ||
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> | ||
Show... <span class="caret"></span> | ||
</button> | ||
<ul class="dropdown-menu"> | ||
<li><a href="#" ng-click="changeType('All')">All</a></li> | ||
<li><a href="#" ng-click="changeType('Internal')">Internal only</a></li> | ||
<li><a href="#" ng-click="changeType('API')">API only</a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
<table class="table"> | ||
<thead> | ||
<tr> | ||
<th>Date</th> | ||
<th>Query</th> | ||
<th>Category</th> | ||
<th>Additional parameters</th> | ||
<th>Access</th> | ||
<th>Username</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr dir-paginate="request in searchRequests | itemsPerPage: limit" total-items="totalRequests" current-page="pagination.current" pagination-id="searches"> | ||
<td>{{ request.time | reformatDate }}</td> | ||
<td> | ||
<a href="" ng-click="openSearch(request)"><span class="glyphicon glyphicon-search"></span></a> | ||
<span ng-class="{'history-title': request.movietitle != null || request.tvtitle != null || (request.query == null && request.identifier_key == null && request.season ==null && request.episode ==null)}"> | ||
{{ formatQuery(request) }} | ||
</span> | ||
</td> | ||
<td>{{ request.category }}</td> | ||
<td ng-bind-html="formatAdditional(request)"></td> | ||
<td>{{ request.internal ? "Internal" : "API"}}</td> | ||
<td>{{ request.username }}</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
<dir-pagination-controls on-page-change="pageChanged(newPageNumber)" pagination-id="searches"></dir-pagination-controls> | ||
--> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<ul class="nav nav-tabs" role="tablist"> | ||
<li role="presentation" ui-sref-active="active"><a ui-sref="root.stats.main" role="tab">Stats</a></li> | ||
<li role="presentation" ui-sref-active="active"><a ui-sref="root.stats.indexers" role="tab">Indexer statuses</a></li> | ||
<li role="presentation" ui-sref-active="active"><a ui-sref="root.stats.searches" role="tab">Search history</a></li> | ||
<li role="presentation" ui-sref-active="active"><a ui-sref="root.stats.downloads" role="tab">Download history</a></li> | ||
<li role="presentation" ui-sref-active="active"><a ui-sref="root.stats.indexers" role="tab">Indexer statuses</a></li> | ||
<li role="presentation" ui-sref-active="active"><a ui-sref="root.stats.main" role="tab">Stats</a></li> | ||
</ul> | ||
|
||
<div ui-view="stats"></div> |
Oops, something went wrong.