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:
parent
d71be13c37
commit
7e4d5611c1
1 changed files with 4 additions and 4 deletions
|
@ -43,10 +43,10 @@
|
||||||
(define (project->row dir project)
|
(define (project->row dir project)
|
||||||
(let ((project-dir (string-append dir "/" project)))
|
(let ((project-dir (string-append dir "/" project)))
|
||||||
`(tr
|
`(tr
|
||||||
(td ,(gitless project))
|
(td (@ (class "span3")) ,(gitless project))
|
||||||
(td ,(project-description project-dir))
|
(td (@ (class "span6")) ,(project-description project-dir))
|
||||||
(td ,(git-last-update project-dir))
|
(td (@ (class "span2")) ,(git-last-update project-dir))
|
||||||
(td ""))))
|
(td (@ (class "span1")) ""))))
|
||||||
|
|
||||||
(define (project-list->table top-dir list lvl)
|
(define (project-list->table top-dir list lvl)
|
||||||
(let ((head (car list))
|
(let ((head (car list))
|
||||||
|
|
Loading…
Reference in a new issue