mirror of
https://github.com/valitydev/redash.git
synced 2024-11-08 18:03:54 +00:00
42 lines
1.2 KiB
HTML
42 lines
1.2 KiB
HTML
<settings-screen>
|
|
<div class="row voffset1">
|
|
<div class="col-md-12">
|
|
<p>
|
|
<a href="query_snippets/new" class="btn btn-default"><i class="fa fa-plus"></i> New Snippet</a>
|
|
</p>
|
|
|
|
<table class="table table-condensed table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th>Trigger</th>
|
|
<th>Description</th>
|
|
<th>Snippet</th>
|
|
<th>Created By</th>
|
|
<th>Updated At</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr ng-repeat="row in $ctrl.snippets.getPageRows()">
|
|
<td>
|
|
<a href="query_snippets/{{row.id}}">{{row.trigger}}</a>
|
|
</td>
|
|
<td>
|
|
{{row.description}}
|
|
</td>
|
|
<td>
|
|
{{row.snippet}}
|
|
</td>
|
|
<td>
|
|
{{row.user.name}}
|
|
</td>
|
|
<td>
|
|
<span am-time-ago="row.created_at"></span>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<paginator paginator="$ctrl.snippets"></paginator>
|
|
</div>
|
|
</div>
|
|
</settings-screen>
|