diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/main/resources/templates/benki/wiki/wikiPageRevisionList.html | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/main/resources/templates/benki/wiki/wikiPageRevisionList.html b/src/main/resources/templates/benki/wiki/wikiPageRevisionList.html index 95c796d..f4a3d95 100644 --- a/src/main/resources/templates/benki/wiki/wikiPageRevisionList.html +++ b/src/main/resources/templates/benki/wiki/wikiPageRevisionList.html @@ -23,11 +23,13 @@ <tbody> {#with page} {#for revision in revisions} + <tr> {#with revision} - <tr>{date.humanDateTime}</tr> - <tr>{title}</tr> - <tr>{author.firstName}</tr> + <td>{date.humanDateTime}</td> + <td>{title}</td> + <td>{author.firstName}</td> {/with} + </tr> {/for} {/with} </tbody> |