You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bloodhound.apache.org by ma...@apache.org on 2013/02/06 20:40:00 UTC

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

Author: matevz
Date: Wed Feb  6 19:40:00 2013
New Revision: 1443160

URL: http://svn.apache.org/viewvc?rev=1443160&view=rev
Log:
incorrect number of params in a tuple passed to group() - possible fix for #366

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=1443160&r1=1443159&r2=1443160&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 Wed Feb  6 19:40:00 2013
@@ -125,7 +125,7 @@ Arguments:
 
     <div class="properties">
       <py:for each="_fields, count in 
-          [(text_fields, _colcount / 2), (area_fields, colspan, 1)]">
+          [(text_fields, _colcount / 2), (area_fields, colspan)]">
         <div py:for="fields_row in group(_fields, count)" class="row">
           ${render_fields_row(fields_row, None, False)}
         </div>