1
0
Fork 0

Add some classes to the projects table

These classes should make all the tables look the same, the other way
was messy.
This commit is contained in:
Tom Willemsen 2012-09-16 15:43:01 +02:00
parent d71be13c37
commit 7e4d5611c1

View file

@ -43,10 +43,10 @@
(define (project->row dir project)
(let ((project-dir (string-append dir "/" project)))
`(tr
(td ,(gitless project))
(td ,(project-description project-dir))
(td ,(git-last-update project-dir))
(td ""))))
(td (@ (class "span3")) ,(gitless project))
(td (@ (class "span6")) ,(project-description project-dir))
(td (@ (class "span2")) ,(git-last-update project-dir))
(td (@ (class "span1")) ""))))
(define (project-list->table top-dir list lvl)
(let ((head (car list))