use markdown for schedule too

This commit is contained in:
root 2018-06-10 13:44:16 +00:00
parent 30d73ef969
commit e42e078dcc
3 changed files with 8 additions and 3 deletions

View File

@ -69,7 +69,7 @@ class Content(models.Model):
header = MarkdownxField(blank=True, null=True, default='')
body = MarkdownxField(blank=True, null=True, default='')
teaser = models.TextField(blank=True, null=True, validators=[MaxLengthValidator(200)])
schedule = models.TextField(blank=True, null=True)
schedule = MarkdownxField(blank=True, null=True, default='')
schedulebutton = models.CharField(db_column='scheduleButton', max_length=255, blank=True, null=True) # Field name made lowercase.
optbtn2 = models.CharField(db_column='optBtn2', max_length=127, blank=True, null=True) # Field name made lowercase.
opttext2 = models.TextField(db_column='optText2', blank=True, null=True) # Field name made lowercase.
@ -119,6 +119,10 @@ class Content(models.Model):
value = ''
return mark_safe(value)
@property
def formatted_schedule(self):
return mark_safe(markdownify(self.schedule))
@property
def typefilter(self):
return self.type

View File

@ -17,6 +17,6 @@
{% if content.schedule %}
<div class="schedule">
<h4>{{content.schedulebutton|default:"Schedule"}}</h4>
<p>{{ content.schedule|safe|linebreaks }}</p>
<p>{{ content.formatted_schedule }}</p>
</div>
{% endif %}

View File

@ -247,7 +247,8 @@ def redirect_event(request):
content = get_object_or_404(Content, shortname=shortname)
return redirect(content.get_absolute_url())
id = request.GET.get('id')
id = re.compile('\d+').findall(id)
if id:
id = re.compile('\d+').findall(id)
if id:
id = id[0]
content = get_object_or_404(Content, id=id)