~linuxgoose/bocpress

ref: 25a3801b4d2932457cba8762da3febe8de42c5c9 bocpress/main/migrations/0124_alter_user_custom_css.py -rw-r--r-- 704 bytes
25a3801bJordan Robinson update project files to release 1.3.7 8 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Generated by Django 5.2.5 on 2025-09-25 21:19

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('main', '0123_user_custom_css'),
    ]

    operations = [
        migrations.AlterField(
            model_name='user',
            name='custom_css',
            field=models.TextField(blank=True, default='', help_text="Custom CSS for your blog to override certain parts, or all of, the default theme. Leave blank for no overrides. Click <a href='https://docs.bocpress.co.uk/custom-css/' target='_blank' rel='noopener noreferrer'>here</a> to learn about the allowed CSS properties.", null=True, verbose_name='Custom CSS'),
        ),
    ]