Update ISBN title
This commit is contained in:
parent
d235f61e5a
commit
441e9841a8
2 changed files with 20 additions and 1 deletions
19
manuels/migrations/0038_auto_20210510_0854.py
Normal file
19
manuels/migrations/0038_auto_20210510_0854.py
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
# Generated by Django 3.0.7 on 2021-05-10 06:54
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
import manuels.models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('manuels', '0037_auto_20190627_1905'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='book',
|
||||||
|
name='isbn',
|
||||||
|
field=models.CharField(help_text="Format attendu : 10 ou 13 chiffres, éventuellement séparés par des tirets et éventuellement suivis de la lettre <code>X</code>. La recherche sur Decitre ne fonctionnera qu'avec un code ISBN à 13 chiffres (ou EAN)", max_length=20, validators=[manuels.models.isbn_validator], verbose_name='ISBN/EAN du manuel élève (hors specimen)'),
|
||||||
|
),
|
||||||
|
]
|
|
@ -221,7 +221,7 @@ class Book(BaseModel):
|
||||||
other_editor = models.CharField(verbose_name='préciser', max_length=100, blank=True)
|
other_editor = models.CharField(verbose_name='préciser', max_length=100, blank=True)
|
||||||
publication_year = models.PositiveIntegerField('année de publication')
|
publication_year = models.PositiveIntegerField('année de publication')
|
||||||
isbn = models.CharField(
|
isbn = models.CharField(
|
||||||
'ISBN/EAN',
|
'ISBN/EAN du manuel élève (hors specimen)',
|
||||||
max_length=20,
|
max_length=20,
|
||||||
help_text="Format attendu : 10 ou 13 chiffres, éventuellement séparés par des tirets et éventuellement "
|
help_text="Format attendu : 10 ou 13 chiffres, éventuellement séparés par des tirets et éventuellement "
|
||||||
"suivis de la lettre <code>X</code>. La recherche sur Decitre ne fonctionnera qu'avec un code ISBN à "
|
"suivis de la lettre <code>X</code>. La recherche sur Decitre ne fonctionnera qu'avec un code ISBN à "
|
||||||
|
|
Loading…
Reference in a new issue