mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-08-14 02:26:58 -07:00
Add Last Watched to home stats
This commit is contained in:
parent
a682cd31af
commit
28d136075c
4 changed files with 229 additions and 14 deletions
|
@ -110,6 +110,17 @@
|
|||
});
|
||||
});
|
||||
|
||||
var date_format = 'YYYY-MM-DD';
|
||||
var time_format = 'hh:mm a';
|
||||
$.ajax({
|
||||
url: 'get_date_formats',
|
||||
type: 'GET',
|
||||
success: function(data) {
|
||||
date_format = data.date_format;
|
||||
time_format = data.time_format;
|
||||
}
|
||||
});
|
||||
|
||||
getHomeStats(${config['home_stats_length']}, ${config['home_stats_type']}, ${config['home_stats_count']});
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue