summaryrefslogtreecommitdiff
path: root/ishtar_common/models.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2016-06-04 00:21:22 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2016-06-04 00:21:22 +0200
commit3c556465e98d0e1d813c69e0f0c141f7cdbd6de4 (patch)
treebe2c49574ed337795ba805b1007a1f02101bb14a /ishtar_common/models.py
parentcd874041d1761f24b984be0d1a524afd5bd4b116 (diff)
downloadIshtar-3c556465e98d0e1d813c69e0f0c141f7cdbd6de4.tar.bz2
Ishtar-3c556465e98d0e1d813c69e0f0c141f7cdbd6de4.zip
Homepage in markdown with settings in database
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r--ishtar_common/models.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py
index dcf141dde..833dfbec9 100644
--- a/ishtar_common/models.py
+++ b/ishtar_common/models.py
@@ -818,6 +818,10 @@ class IshtarSiteProfile(models.Model, Cached):
warehouse = models.BooleanField(
_(u"Warehouses module"), default=False,
help_text=_(u"Need finds module"))
+ homepage = models.TextField(
+ _(u"Home page"), null=True, blank=True,
+ help_text=_(u"Homepage of Ishtar - if not defined a default homepage "
+ u"will appear. Use the markdown syntax."))
active = models.BooleanField(_(u"Current active"), default=False)
class Meta: