aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-03-28 11:26:47 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-03-28 11:26:47 +0100
commit21074e1b7a110d219d71049a8bae26f6b9466118 (patch)
tree2a9fef856e209f9c1c166c89d9fcb2d9c0f65394
parentBugfix: unnecessary trailing slash. (diff)
downloadnewspipe-21074e1b7a110d219d71049a8bae26f6b9466118.tar.gz
newspipe-21074e1b7a110d219d71049a8bae26f6b9466118.tar.bz2
newspipe-21074e1b7a110d219d71049a8bae26f6b9466118.zip
Improved table to the /duplicates page.
-rw-r--r--pyaggr3g470r/templates/duplicates.html8
1 files changed, 6 insertions, 2 deletions
diff --git a/pyaggr3g470r/templates/duplicates.html b/pyaggr3g470r/templates/duplicates.html
index 2c953fa3..86990473 100644
--- a/pyaggr3g470r/templates/duplicates.html
+++ b/pyaggr3g470r/templates/duplicates.html
@@ -8,8 +8,12 @@
<thead>
<tr>
<th>#</th>
- <th><span class="delete-all">Delete all</span></th>
- <th><span class="delete-all">Delete all</span></th>
+ <th align="center">
+ <span class="delete-all btn btn-default">{{ _('Delete all in this column') }}</span>
+ </th>
+ <th align="center">
+ <span class="delete-all btn btn-default">{{ _('Delete all in this column') }}</span>
+ </th>
</tr>
</thead>
<tbody>
bgstack15