dump update

This commit is contained in:
Tuan-Dung Bui 2023-04-15 18:35:02 +07:00
parent 7680ba4bb0
commit c3b7d465b1
784 changed files with 35 additions and 18 deletions

0
templates/about/about.html Normal file → Executable file
View file

0
templates/about/custom-checker-sample.html Normal file → Executable file
View file

0
templates/actionbar/list.html Normal file → Executable file
View file

0
templates/actionbar/media-js.html Normal file → Executable file
View file

0
templates/admin/auth/user/change_form.html Normal file → Executable file
View file

0
templates/admin/judge/contest/change_form.html Normal file → Executable file
View file

0
templates/admin/judge/contest/change_list.html Normal file → Executable file
View file

0
templates/admin/judge/judge/change_form.html Normal file → Executable file
View file

0
templates/admin/judge/problem/change_form.html Normal file → Executable file
View file

0
templates/admin/judge/profile/change_form.html Normal file → Executable file
View file

0
templates/admin/judge/submission/change_form.html Normal file → Executable file
View file

0
templates/base.html Normal file → Executable file
View file

0
templates/blog/blog.html Normal file → Executable file
View file

0
templates/blog/content.html Normal file → Executable file
View file

0
templates/blog/dashboard.html Normal file → Executable file
View file

0
templates/blog/list.html Normal file → Executable file
View file

0
templates/blog/media-css.html Normal file → Executable file
View file

0
templates/blog/preview.html Normal file → Executable file
View file

0
templates/chat/chat.html Normal file → Executable file
View file

0
templates/chat/chat_css.html Normal file → Executable file
View file

0
templates/chat/message.html Normal file → Executable file
View file

0
templates/chat/message_list.html Normal file → Executable file
View file

0
templates/chat/online_status.html Normal file → Executable file
View file

0
templates/chat/user_online_status.html Normal file → Executable file
View file

15
templates/comments/content-list.html Normal file → Executable file
View file

@ -98,20 +98,19 @@
</div>
</div>
<!-- {{ node.count_replies }}
{{node.revisions - 1}} -->
{% if node.revisions == 1 %}
{% set real_replies = node.count_replies - node.revisions + 1 %}
{% else %}
{% set real_replies = node.count_replies - node.revisions + 2 %}
{% endif %}
{% if real_replies > 1 %}
<a href="javascript:comment_reply({{ node.id }}, {{ object.id }})" class="show_more_reply"> {{ real_replies }} {{
_(' Replies ') }} </a>
<a href="javascript:comment_reply({{ node.id }}, {{ object.id }})" class="show_more_reply">
{{ _(' View ') }} {{ real_replies }} {{ _(' replies ') }}
</a>
{% elif real_replies %}
<a href="javascript:comment_reply({{ node.id }}, {{ object.id }})" class="show_more_reply"> {{ real_replies }} {{
_(' Reply ') }} </a>
<a href="javascript:comment_reply({{ node.id }}, {{ object.id }})" class="show_more_reply">
{{ _(' View ') }} {{ real_replies }} {{_(' reply ') }}
</a>
{% endif %}
</li>
<ul id="comment-{{ node.id }}-reply" class="reply-comment" hidden></ul>
@ -120,5 +119,5 @@
{% if replies - offset > 0 %}
<a href="javascript:comment_show_more({{ comment_root_id }}, {{ object.id }}, {{ offset }} )" class="show_more_comment">
{{ replies - offset }} Replies More</a>
{{ _(' View ') }} {{ replies - offset }} {{ _(' comments more ') }}</a>
{% endif %}

0
templates/comments/content.html Normal file → Executable file
View file

0
templates/comments/edit-ajax.html Normal file → Executable file
View file

0
templates/comments/edit.html Normal file → Executable file
View file

0
templates/comments/feed.html Normal file → Executable file
View file

0
templates/comments/list.html Normal file → Executable file
View file

0
templates/comments/math.html Normal file → Executable file
View file

0
templates/comments/media-css.html Normal file → Executable file
View file

6
templates/comments/media-js.html Normal file → Executable file
View file

@ -156,13 +156,15 @@
offset: offset,
},
success: function(data) {
var $comment_show_btn = $("#comment-" + id + " .show_more_comment");
$comment_show_btn.hide();
if (id == 0) {
var $comment = $("#comment-" + id);
var $comment_show_btn = $("#comment-" + id + " .show_more_comment");
$comment_show_btn.hide();
$comment.append(data);
} else {
var $comment = $("#comment-" + id + "-children");
var $comment_show_btn = $("#comment-" + id + "-children" + " .show_more_comment");
$comment_show_btn.hide();
$comment.append(data);
}
}

0
templates/comments/preview.html Normal file → Executable file
View file

0
templates/comments/revision-ajax.html Normal file → Executable file
View file

0
templates/comments/votes.html Normal file → Executable file
View file

0
templates/common-content.html Normal file → Executable file
View file

0
templates/contest/access_code.html Normal file → Executable file
View file

0
templates/contest/calendar.html Normal file → Executable file
View file

0
templates/contest/clarification.html Normal file → Executable file
View file

0
templates/contest/clone.html Normal file → Executable file
View file

0
templates/contest/contest-datetime.html Normal file → Executable file
View file

0
templates/contest/contest-list-tabs.html Normal file → Executable file
View file

0
templates/contest/contest-tabs.html Normal file → Executable file
View file

0
templates/contest/contest.html Normal file → Executable file
View file

0
templates/contest/list.html Normal file → Executable file
View file

0
templates/contest/media-js.html Normal file → Executable file
View file

0
templates/contest/moss.html Normal file → Executable file
View file

0
templates/contest/preview.html Normal file → Executable file
View file

0
templates/contest/private.html Normal file → Executable file
View file

0
templates/contest/ranking-css.html Normal file → Executable file
View file

0
templates/contest/ranking-table.html Normal file → Executable file
View file

0
templates/contest/ranking.html Normal file → Executable file
View file

0
templates/contest/stats.html Normal file → Executable file
View file

0
templates/contest/tag-ajax.html Normal file → Executable file
View file

0
templates/contest/tag-title.html Normal file → Executable file
View file

0
templates/contest/tag.html Normal file → Executable file
View file

0
templates/contests-countdown.html Normal file → Executable file
View file

0
templates/course/base.html Normal file → Executable file
View file

0
templates/course/list.html Normal file → Executable file
View file

0
templates/error.html Normal file → Executable file
View file

0
templates/extra_js.html Normal file → Executable file
View file

0
templates/feed/feed_js.html Normal file → Executable file
View file

0
templates/feed/has_next.html Normal file → Executable file
View file

0
templates/fine_uploader/script.html Normal file → Executable file
View file

0
templates/flatpages/admin_link.html Normal file → Executable file
View file

0
templates/flatpages/default.html Normal file → Executable file
View file

0
templates/flatpages/markdown.html Normal file → Executable file
View file

0
templates/flatpages/markdown_math.html Normal file → Executable file
View file

0
templates/generic-message.html Normal file → Executable file
View file

0
templates/home.html Normal file → Executable file
View file

0
templates/internal/left-sidebar.html Normal file → Executable file
View file

0
templates/internal/problem.html Normal file → Executable file
View file

0
templates/internal/request_time.html Normal file → Executable file
View file

0
templates/internal/request_time_detail.html Normal file → Executable file
View file

0
templates/license-preview.html Normal file → Executable file
View file

0
templates/license.html Normal file → Executable file
View file

0
templates/list-pages.html Normal file → Executable file
View file

0
templates/loading-page.html Normal file → Executable file
View file

0
templates/mathjax-load.html Normal file → Executable file
View file

0
templates/messages.html Normal file → Executable file
View file

0
templates/notification/list.html Normal file → Executable file
View file

0
templates/organization/add-member.html Normal file → Executable file
View file

0
templates/organization/add.html Normal file → Executable file
View file

0
templates/organization/blog/add.html Normal file → Executable file
View file

0
templates/organization/blog/edit.html Normal file → Executable file
View file

0
templates/organization/blog/pending.html Normal file → Executable file
View file

0
templates/organization/contest/add.html Normal file → Executable file
View file

0
templates/organization/contest/edit.html Normal file → Executable file
View file

0
templates/organization/contests.html Normal file → Executable file
View file

0
templates/organization/edit.html Normal file → Executable file
View file

0
templates/organization/form.html Normal file → Executable file
View file

0
templates/organization/home-base.html Normal file → Executable file
View file

0
templates/organization/home-js.html Normal file → Executable file
View file

0
templates/organization/home.html Normal file → Executable file
View file

0
templates/organization/list.html Normal file → Executable file
View file

0
templates/organization/new.html Normal file → Executable file
View file

0
templates/organization/org-left-sidebar.html Normal file → Executable file
View file

0
templates/organization/org-right-sidebar.html Normal file → Executable file
View file

0
templates/organization/preview.html Normal file → Executable file
View file

Some files were not shown because too many files have changed in this diff Show more