From 51e5f620bfe77d4352a4e72457d6a6e04296700c Mon Sep 17 00:00:00 2001 From: reality Date: Sat, 24 Aug 2013 15:02:48 +0000 Subject: [PATCH] test --- views/report/notifies.jade | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/views/report/notifies.jade b/views/report/notifies.jade index 71d2763..9be631e 100644 --- a/views/report/notifies.jade +++ b/views/report/notifies.jade @@ -6,18 +6,19 @@ block content p div#controls input(type="text", name="search", id="search-text", oninput="searchNotifies(this.value)") - div#notify_datatable - table.table.table-hover.data#notifies - thead - tr - th Date - th Channel - th User - th Message - tbody - for notify in notifies + div#row + div#notify_datatable + table.table.table-hover.data#notifies + thead tr - td #{new Date(notify.time)} - td #{notify.channel} - td #{notify.user} - td #{notify.message} + th Date + th Channel + th User + th Message + tbody + for notify in notifies + tr + td #{new Date(notify.time)} + td #{notify.channel} + td #{notify.user} + td #{notify.message}