diff --git a/RIGS/templates/RIGS/event_print.xml b/RIGS/templates/RIGS/event_print.xml
index 6d693117..4892e566 100644
--- a/RIGS/templates/RIGS/event_print.xml
+++ b/RIGS/templates/RIGS/event_print.xml
@@ -77,6 +77,14 @@
+
+
+
+
{# Note: page is 595x842 points (1 point=1/72in) #}
@@ -128,4 +136,4 @@
{% include "RIGS/event_print_page.xml" %}
-
\ No newline at end of file
+
diff --git a/RIGS/templatetags/markdown_tags.py b/RIGS/templatetags/markdown_tags.py
index 8bdf53e4..2c44595c 100644
--- a/RIGS/templatetags/markdown_tags.py
+++ b/RIGS/templatetags/markdown_tags.py
@@ -30,10 +30,9 @@ def markdown_filter(text, format='html'):
bq.name = 'pre'
bq.string = bq.text
- for ul in soup('ul'):
- ul['value'] = 'square'
- ul['bulletFontSize'] = '8'
- for li in ul.findAll('li'):
+ for list in soup.findAll(['ul','ol']):
+ list['style'] = list.name
+ for li in list.findAll('li'):
p = soup.new_tag('p')
p.string = li.text
li.string = ''
@@ -41,7 +40,7 @@ def markdown_filter(text, format='html'):
indent = soup.new_tag('indent')
indent['left'] = '1.2cm'
- content = ul.replace_with(indent)
+ content = list.replace_with(indent)
indent.append(content)
# Paragraphs have a different tag
diff --git a/db.sqlite3 b/db.sqlite3
index a7169448..cb625ae1 100644
Binary files a/db.sqlite3 and b/db.sqlite3 differ