From 5c1a7116ed9aab368b0a110f6f618d18ffb89ef9 Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Sat, 8 Nov 2014 18:39:46 -0500 Subject: [PATCH] Move modules to the end of the package detail page --- src/main.rkt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main.rkt b/src/main.rkt index bb3c5cd..248f144 100644 --- a/src/main.rkt +++ b/src/main.rkt @@ -622,11 +622,6 @@ `(li "Dependency problems: " ,(buildhost-link (@ pkg build dep-failure-log) "details"))) ))) - (tr (th "Modules") - (td (ul ((class "module-list")) - ,@(for/list ((mod (or (@ pkg modules) '()))) - (match-define (list kind path) mod) - `(li ((class ,kind)) ,path))))) ,@(let* ((vs (or (@ pkg versions) (hash))) (empty-checksum "9f098dddde7f217879070816090c1e8e74d49432") (vs (for/hash (((k v) (in-hash vs)) @@ -651,6 +646,11 @@ (td ,(utc->string (@ pkg last-checked)))) (tr (th "Last edited") (td ,(utc->string (@ pkg last-edit)))) + (tr (th "Modules") + (td (ul ((class "module-list")) + ,@(for/list ((mod (or (@ pkg modules) '()))) + (match-define (list kind path) mod) + `(li ((class ,kind)) ,path))))) ))))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;