Merge pull request #1066 from eeintech/fix_part_null_notes_template

Fixed Part notes template (check for NULL value before mardown render)
This commit is contained in:
Oliver 2020-10-22 09:53:15 +11:00 committed by GitHub
commit 5877b9616d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,7 +37,9 @@
<hr> <hr>
<div class='panel panel-default'> <div class='panel panel-default'>
<div class='panel-content'> <div class='panel-content'>
{% if part.notes %}
{{ part.notes | markdownify }} {{ part.notes | markdownify }}
{% endif %}
</div> </div>
</div> </div>