Dashboard UI suitable for tablets

perfect thank you. I used that, but set a variable. so, in the html I have:

data-bind=“fDate1”>
data-bind=“fDate2”>
data-bind=“fDate3”>
data-bind=“fDate4”>

and in the coffee script I added this to the bottom:

ready: ->
setInterval(@startTime, 10000)

startTime: =>
day1 = new Date()
day2 = new Date()
day3 = new Date()
day4 = new Date()

day1.setDate(day1.getDate() + 1) 
day2.setDate(day2.getDate() + 2) 
day3.setDate(day3.getDate() + 3) 
day4.setDate(day4.getDate() + 4) 

options = { weekday: 'short' };
@set('fDate1', day1.toLocaleDateString('en-GB', options))
@set('fDate2', day2.toLocaleDateString('en-GB', options))
@set('fDate3', day3.toLocaleDateString('en-GB', options))
@set('fDate4', day4.toLocaleDateString('en-GB', options))