##// END OF EJS Templates
Show localized tags under the proper letter section in all tags list. Cache localized tag name, not the whole view
Show localized tags under the proper letter section in all tags list. Cache localized tag name, not the whole view

File last commit:

r1667:9955a8b6 default
r1892:0808e889 default
Show More
0051_auto_20161013_1037.py
25 lines | 725 B | text/x-python | PythonLexer
/ boards / migrations / 0051_auto_20161013_1037.py
# -*- coding: utf-8 -*-
# Generated by Django 1.9.5 on 2016-10-13 07:37
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('boards', '0050_auto_20161008_1745'),
]
operations = [
migrations.AlterField(
model_name='post',
name='pub_time',
field=models.DateTimeField(db_index=True),
),
migrations.AlterField(
model_name='thread',
name='status',
field=models.CharField(choices=[('active', 'active'), ('bumplimit', 'bumplimit'), ('archived', 'archived')], db_index=True, default='active', max_length=50),
),
]