##// END OF EJS Templates
Do not close the form when clicking 'reply' again on the same post
Do not close the form when clicking 'reply' again on the same post

File last commit:

r1704:8410d497 default
r1830:5502a653 default
Show More
0053_auto_20161127_1541.py
25 lines | 657 B | text/x-python | PythonLexer
/ boards / migrations / 0053_auto_20161127_1541.py
# -*- coding: utf-8 -*-
# Generated by Django 1.9.5 on 2016-11-27 13:41
from __future__ import unicode_literals
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('boards', '0052_auto_20161120_1344'),
]
operations = [
migrations.RemoveField(
model_name='post',
name='threads',
),
migrations.AlterField(
model_name='post',
name='thread',
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='replies', to='boards.Thread'),
),
]