Revert "Change comment style (#67)"

This reverts commit 411f3da45e.
This commit is contained in:
Phuoc Dinh Le 2023-05-20 08:53:27 +09:00 committed by GitHub
parent 411f3da45e
commit e66b57ad5f
784 changed files with 307 additions and 696 deletions

4
dmoj/urls.py Executable file → Normal file
View file

@ -1,6 +1,5 @@
import chat_box.views as chat
from django.urls import include, path
from django.conf import settings
from django.conf.urls import include, url
from django.contrib import admin
@ -207,7 +206,6 @@ def paged_list_view(view, name, **kwargs):
urlpatterns = [
path('__debug__/', include('debug_toolbar.urls')),
url("", include("pagedown.urls")),
url(
r"^$",
@ -470,8 +468,6 @@ urlpatterns = [
url(r"^comments/upvote/$", comment.upvote_comment, name="comment_upvote"),
url(r"^comments/downvote/$", comment.downvote_comment, name="comment_downvote"),
url(r"^comments/hide/$", comment.comment_hide, name="comment_hide"),
url(r"^comments/get_replies/$", comment.get_replies, name="comment_get_replies"),
url(r"^comments/show_more/$", comment.get_show_more, name="comment_show_more"),
url(
r"^comments/(?P<id>\d+)/",
include(