mirror of
https://github.com/QingdaoU/OnlineJudge.git
synced 2024-12-29 16:41:56 +00:00
修复小 bug
This commit is contained in:
parent
3761c15ae2
commit
b34009a6b3
18
account/migrations/0010_remove_user_login_failed_counter.py
Normal file
18
account/migrations/0010_remove_user_login_failed_counter.py
Normal file
@ -0,0 +1,18 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import models, migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('account', '0009_user_reset_password_token_create_time'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='user',
|
||||
name='login_failed_counter',
|
||||
),
|
||||
]
|
@ -10,11 +10,10 @@
|
||||
作者:{{ announcement.created_by }}
|
||||
|
||||
创建时间:{{ announcement.create_time }}
|
||||
{% ifequal announcement.create_time announcement.last_update_time %}
|
||||
{% else %}
|
||||
{% ifnotequal announcement.create_time announcement.last_update_time %}
|
||||
|
||||
最后更新:{{ announcement.last_update_time }}
|
||||
{% endifequal %}
|
||||
{% endifnotequal %}
|
||||
</p>
|
||||
|
||||
<div>
|
||||
|
Loading…
Reference in New Issue
Block a user