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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: Tools/AutoSheriff/ui/nb-ignores-list.html
diff --git a/Tools/AutoSheriff/ui/nb-ignores-list.html b/Tools/AutoSheriff/ui/nb-ignores-list.html
new file mode 100644
index 0000000000000000000000000000000000000000..08315c8264533320f1889e91f357106d58fe7557
--- /dev/null
+++ b/Tools/AutoSheriff/ui/nb-ignores-list.html
@@ -0,0 +1,21 @@
+<polymer-element name="nb-ignores-list" attributes='ignores' noscript>
+<template>
+ <script src='filters.js'></script>
+ <table>
+ <tr><th>pattern</th><th>added</th></tr>
+ <template repeat="{{ ignore in ignores }}">
+ <tr>
+ <td>{{ignore.pattern}}</td>
+ <td>{{ignore.date | since_string}}</td>
+ <td>
+ <form action='/ignore' method='post'>
+ <input type='hidden' name='action' value='delete'>
+ <input type='hidden' name='key' value='{{ignore.key}}'>
+ <input type='submit' value='delete'>
+ </form>
+ </td>
+ </tr>
+ </template>
+ </table>
+</template>
+</polymer-element>
« 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