Skip to content

Commit adaa29d

Browse files
committed
Fix formatting issue in view.html for document upload timestamp display
1 parent 0a89e11 commit adaa29d

File tree

1 file changed

+1
-3
lines changed
  • document_analysis/document_analysis/templates/analysis

1 file changed

+1
-3
lines changed

document_analysis/document_analysis/templates/analysis/view.html

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,8 @@ <h1 class="text-3xl font-bold">{{ document['title'] }}</h1>
1919
</button>
2020
</div>
2121
</div>
22-
<p class="text-gray-500">Uploaded by {{ document['username'] }} on {{ document['created'].strftime('%Y-%m-%d
23-
%H:%M') }}</p>
22+
<p class="text-gray-500">Uploaded by {{ document['username'] }} on {{ document['created'].strftime('%Y-%m-%d %H:%M') }}</p>
2423
</div>
25-
2624
<!-- Main Content -->
2725
<div class="grid grid-cols-1 lg:grid-cols-3 gap-8">
2826
<!-- Document Content -->

0 commit comments

Comments
 (0)