mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-18 14:38:04 -06:00
Add Tags columns
This commit is contained in:
@@ -743,6 +743,7 @@ var TorrentsTable = new Class({
|
||||
this.newColumn('eta', '', 'QBT_TR(ETA)QBT_TR[CONTEXT=TorrentModel]', 100, true);
|
||||
this.newColumn('ratio', '', 'QBT_TR(Ratio)QBT_TR[CONTEXT=TorrentModel]', 100, true);
|
||||
this.newColumn('category', '', 'QBT_TR(Category)QBT_TR[CONTEXT=TorrentModel]', 100, true);
|
||||
this.newColumn('tags', '', 'QBT_TR(Tags)QBT_TR[CONTEXT=TorrentModel]', 100, true);
|
||||
this.newColumn('added_on', '', 'QBT_TR(Added On)QBT_TR[CONTEXT=TorrentModel]', 100, true);
|
||||
this.newColumn('completion_on', '', 'QBT_TR(Completed On)QBT_TR[CONTEXT=TorrentModel]', 100, false);
|
||||
this.newColumn('tracker', '', 'QBT_TR(Tracker)QBT_TR[CONTEXT=TorrentModel]', 100, false);
|
||||
@@ -961,6 +962,9 @@ var TorrentsTable = new Class({
|
||||
td.set('html', html);
|
||||
};
|
||||
|
||||
// tags
|
||||
this.columns['tags'].updateTd = this.columns['name'].updateTd;
|
||||
|
||||
// added on
|
||||
this.columns['added_on'].updateTd = function (td, row) {
|
||||
var date = new Date(this.getRowValue(row) * 1000).toLocaleString();
|
||||
|
||||
Reference in New Issue
Block a user