24 lines
674 B
Python
24 lines
674 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.5 on 2017-09-22 17:01
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("mainsite", "0003_siteconfiguration"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="publication",
|
|
name="in_year_view_anyway",
|
|
field=models.BooleanField(
|
|
default=False,
|
|
help_text="Si le numéro est spécial, l'afficher quand même dans la page de l'année correspondante.",
|
|
verbose_name="Aussi dans l'année",
|
|
),
|
|
),
|
|
]
|