This will make the display across multiple dates look cleaner.
<table class="table table-striped table-sm">
<thead>
<tr>
- <th scope="col">Thread</th>
- <th scope="col">Author</th>
- <th scope="col">Time</th>
+ <th scope="col" style="width: 70%;">Thread</th>
+ <th scope="col" style="width: 25%;">Author</th>
+ <th scope="col" style="width: 5%;">Time</th>
</tr>
</thead>
<tbody>
url(r'^accounts/logout/?$', archives.auth.logout),
url(r'^auth_receive/$', archives.auth.auth_receive),
]
+
+from django.conf.urls.static import static
+urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
+urlpatterns += static('/media/', document_root=settings.MEDIA_ROOT)