diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-10-30 03:08:06 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-10-30 03:08:06 +0100 |
commit | 5b41f143a3956fbd9d3a2288e607e6aa8d8c3451 (patch) | |
tree | bd15b032cf9ee7e843c7b40c407a89c686f788d2 /chimere/models.py | |
parent | 07eff011922affd5733814c13236fe149cd64fd1 (diff) | |
download | Chimère-5b41f143a3956fbd9d3a2288e607e6aa8d8c3451.tar.bz2 Chimère-5b41f143a3956fbd9d3a2288e607e6aa8d8c3451.zip |
Importer HTML-XSLT: retrieving and parsing of external website using an URL and XSLT files
Diffstat (limited to 'chimere/models.py')
-rw-r--r-- | chimere/models.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chimere/models.py b/chimere/models.py index 952594c..727c3c7 100644 --- a/chimere/models.py +++ b/chimere/models.py @@ -326,7 +326,8 @@ class Importer(models.Model): filtr = models.CharField(_(u"Filter"), max_length=200, blank=True, null=True) source = models.CharField(_(u"Web address"), max_length=200, - blank=True, null=True) + blank=True, null=True, + help_text=_(u"Don't forget the trailing slash")) source_file = models.FileField(_(u"Source file"), upload_to='import_files', blank=True, null=True) source_file_alt = models.FileField(_(u"Alt source file"), |