##// END OF EJS Templates
Required tags are now called sections and split up in the all tags list
Required tags are now called sections and split up in the all tags list

File last commit:

r922:d17fdea9 default
r1254:6b9c7236 default
Show More
0004_tag_required.py
20 lines | 436 B | text/x-python | PythonLexer
neko259
Added required tags. At least one such tag is needed to create a thread. All...
r922 # -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('boards', '0003_remove_tag_threads'),
]
operations = [
migrations.AddField(
model_name='tag',
name='required',
field=models.BooleanField(default=False),
preserve_default=True,
),
]