Project 'tomas.hozman/graphics-generator' was moved to 'to-generator/graphics-generator'. Please update any links and bookmarks that may still have the old path.
Select Git revision
ATTRIBUTIONS.md
-
Tomáš Hozman authored
jquery select2 for images, changeable resolution with dynamic positions, no longer relying on local fonts
Tomáš Hozman authoredjquery select2 for images, changeable resolution with dynamic positions, no longer relying on local fonts
0002_auto_20200805_0726.py 926 B
# Generated by Django 3.0.8 on 2020-08-05 05:26
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("program2021", "0001_initial"),
]
operations = [
migrations.AddField(
model_name="program2021homepage",
name="headline",
field=models.CharField(
blank=True,
help_text="Hlavní titulek domovské stránky",
max_length=100,
null=True,
verbose_name="název programu",
),
),
migrations.AddField(
model_name="program2021homepage",
name="perex",
field=models.TextField(
blank=True,
help_text="Text pod titulkem",
max_length=512,
null=True,
verbose_name="perex",
),
),
]