Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Side by Side Diff: Tools/AutoSheriff/ui/nb-ignores-list.html

Issue 398823008: WIP: Add auto-sheriff.appspot.com code to Blink Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <polymer-element name="nb-ignores-list" attributes='ignores' noscript>
2 <template>
3 <script src='filters.js'></script>
4 <table>
5 <tr><th>pattern</th><th>added</th></tr>
6 <template repeat="{{ ignore in ignores }}">
7 <tr>
8 <td>{{ignore.pattern}}</td>
9 <td>{{ignore.date | since_string}}</td>
10 <td>
11 <form action='/ignore' method='post'>
12 <input type='hidden' name='action' value='delete'>
13 <input type='hidden' name='key' value='{{ignore.key}}'>
14 <input type='submit' value='delete'>
15 </form>
16 </td>
17 </tr>
18 </template>
19 </table>
20 </template>
21 </polymer-element>
OLDNEW
« Tools/AutoSheriff/ui/nb-changelogs.html ('K') | « Tools/AutoSheriff/ui/nb-grouped-alert-list.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698