Fix of issue 4059, event type begins with non latin char.
svn: r15549
This commit is contained in:
parent
44f970baa8
commit
9e40603988
@ -2543,8 +2543,7 @@ class EventListPage(BasePage):
|
|||||||
# set up hyperlinked letter for alphabet_navigation
|
# set up hyperlinked letter for alphabet_navigation
|
||||||
tcell = Html("td", class_ = "ColumnLetter", inline = True)
|
tcell = Html("td", class_ = "ColumnLetter", inline = True)
|
||||||
trow += tcell
|
trow += tcell
|
||||||
|
ltr = unicode(evt_type)[0].capitalize()
|
||||||
ltr = evt_type[0].capitalize()
|
|
||||||
if first_letter:
|
if first_letter:
|
||||||
trow.attr = 'class = "BeginLetter"'
|
trow.attr = 'class = "BeginLetter"'
|
||||||
tcell += Html("a", ltr, name = ltr,
|
tcell += Html("a", ltr, name = ltr,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user