Skip to content
Snippets Groups Projects
Commit 998809f9 authored by Ghazi Triki's avatar Ghazi Triki
Browse files

Fix date formatting.

parent 7b622059
No related branches found
No related tags found
No related merge requests found
......@@ -52,15 +52,20 @@ task copyWebInf(type: Copy) {
from("src/main/webapp")
}
// Task that creates the index file which lists all extra libs
task copyViews(type: Copy) {
into("${project.buildDir}/resources/main/grails-app/views")
from("grails-app/views")
}
task copyI18n(type: Copy) {
into("${project.buildDir}/resources/main/grails-app/i18n")
from("grails-app/i18n")
}
// make processResources depends on copyWebInf task
processResources.dependsOn copyWebInf
copyWebInf.dependsOn copyViews
copyViews.dependsOn copyI18n
repositories {
jcenter()
......
......@@ -58,7 +58,7 @@
</div>
</g:if>
</td>
<td class="cell c4" style="text-align:left;">${r.unixDate}</td>
<td class="cell c4" style="text-align:left;">${r.reportDate}</td>
<td class="cell c5" style="text-align:right;">${r.duration}</td>
<g:if test="${ismoderator}">
<td class="cell c6 lastcol" style="text-align:center;">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment