mirror of
https://github.com/daniviga/django-ram.git
synced 2025-08-04 13:17:50 +02:00
Change default name
This commit is contained in:
@@ -0,0 +1,18 @@
|
|||||||
|
# Generated by Django 4.0.3 on 2022-04-10 17:35
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('portal', '0005_remove_siteconfiguration_homepage_content'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='siteconfiguration',
|
||||||
|
name='site_name',
|
||||||
|
field=models.CharField(default='Railroad Assets Manager', max_length=256),
|
||||||
|
),
|
||||||
|
]
|
@@ -8,7 +8,7 @@ from solo.models import SingletonModel
|
|||||||
class SiteConfiguration(SingletonModel):
|
class SiteConfiguration(SingletonModel):
|
||||||
site_name = models.CharField(
|
site_name = models.CharField(
|
||||||
max_length=256,
|
max_length=256,
|
||||||
default="Trains assets manager")
|
default="Railroad Assets Manager")
|
||||||
site_author = models.CharField(max_length=256, blank=True)
|
site_author = models.CharField(max_length=256, blank=True)
|
||||||
about = models.TextField(blank=True)
|
about = models.TextField(blank=True)
|
||||||
items_per_page = models.CharField(
|
items_per_page = models.CharField(
|
||||||
|
Reference in New Issue
Block a user