You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bloodhound.apache.org by gj...@apache.org on 2012/11/02 13:36:17 UTC

svn commit: r1404951 - /incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_ticket_box.html

Author: gjm
Date: Fri Nov  2 12:36:16 2012
New Revision: 1404951

URL: http://svn.apache.org/viewvc?rev=1404951&view=rev
Log:
fixes unsupported operand error when colcount is undefined by using _colcount instead - fixes #244

Modified:
    incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_ticket_box.html

Modified: incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_ticket_box.html
URL: http://svn.apache.org/viewvc/incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_ticket_box.html?rev=1404951&r1=1404950&r2=1404951&view=diff
==============================================================================
--- incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_ticket_box.html (original)
+++ incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_ticket_box.html Fri Nov  2 12:36:16 2012
@@ -112,7 +112,7 @@ Arguments:
     </div>
     <div class="properties" style="margin-top: 1.2em">
       <py:for each="_fields, csscls, count, fontsize, is_inline in 
-          [(text_fields, 'span4', colcount / 2, None, False),
+          [(text_fields, 'span4', _colcount / 2, None, False),
            (area_fields, colspan, 1, None, False)]">
         <py:for each="fields_row in group(_fields, count)">
           ${render_fields_row(fields_row, csscls, fontsize, is_inline)}