Fix the build
This commit is contained in:
Binary file not shown.
@@ -0,0 +1,73 @@
|
||||
<div class="redirecturlsearch" ng-controller="Umbraco.RedirectUrlSearch">
|
||||
|
||||
<div style="float: right;">
|
||||
<button type="button" class="btn" ng-click="toggleUrlTracker()"><span>{{action}} URL Tracker</span></button>
|
||||
</div>
|
||||
|
||||
<h2>Redirect Url Search</h2>
|
||||
<p>When you move and rename pages in Umbraco, 301 permanent redirects are automatically created</p>
|
||||
<p>Here is a list of the redirects</p>
|
||||
|
||||
<!--<div class="control-group umb-control-group">
|
||||
<div class="umb-el-wrap">
|
||||
<label class="control-label" for="searchTerm">
|
||||
Search Url:
|
||||
</label>
|
||||
<div class="controls controls-row">
|
||||
<input name="searchTerm" type="text" ng-model="searchTerm" no-dirty-check class="col-md-12"/> <button class="btn btn-primary" ng-click="search()">Search</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>-->
|
||||
|
||||
<div ng-bind="StatusMessage"></div>
|
||||
<table ng-show="hasResults" class="table table-hover">
|
||||
<tr><th>Original Url</th><th>Redirected To</th><th>Date Created</th><th>Remove</th></tr>
|
||||
<tbody>
|
||||
<tr class="redirecturls-search-result" ng-repeat="redirectUrl in redirectUrls">
|
||||
|
||||
<td><a href="{{redirectUrl.Url}}">{{redirectUrl.Url}}</a></td>
|
||||
<td><a href="{{redirectUrl.ContentUrl}}">{{redirectUrl.ContentUrl}}</a> <a title="edit item" href="/umbraco/#/content/content/edit/{{redirectUrl.ContentId}}"><i class="icon icon-edit"></i></a></td>
|
||||
<td>{{redirectUrl.CreateDateUtc | date:'medium'}}</td>
|
||||
<td><button class="btn btn-small btn-primary" ng-click="removeRedirect(redirectUrl)">Remove</button></td>
|
||||
|
||||
</tr>
|
||||
|
||||
</tbody>
|
||||
|
||||
<tfoot ng-show="pagination.length > 1">
|
||||
<tr>
|
||||
<th colspan="4">
|
||||
<div class="pull-left">
|
||||
</div>
|
||||
<div class="pagination pagination-right">
|
||||
<ul>
|
||||
<li ng-class="{disabled:options.pageNumber <= 1}">
|
||||
<a href="#" ng-click="prev()" prevent-default>
|
||||
<localize key="general_previous">Previous</localize>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li ng-repeat="pgn in pagination"
|
||||
ng-class="{active:pgn.isActive}">
|
||||
|
||||
<a href="#" ng-click="goToPage(pgn.val - 1)" prevent-default
|
||||
ng-bind="pgn.name ? pgn.name : pgn.val"
|
||||
ng-if="pgn.val != '...'"></a>
|
||||
<span ng-bind="pgn.val" ng-if="pgn.val == '...'"></span>
|
||||
</li>
|
||||
|
||||
<li ng-class="{disabled:options.pageNumber >= totalCount}">
|
||||
<a href="#" ng-click="next()" prevent-default>
|
||||
<localize key="general_next">Next</localize>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</th>
|
||||
</tr>
|
||||
</tfoot>
|
||||
|
||||
</table>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user