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/10/16 17:20:13 UTC

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

Author: gjm
Date: Tue Oct 16 15:20:12 2012
New Revision: 1398842

URL: http://svn.apache.org/viewvc?rev=1398842&view=rev
Log:
fix for missing keyword regression from #206 - fixes #236

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=1398842&r1=1398841&r2=1398842&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 Tue Oct 16 15:20:12 2012
@@ -61,10 +61,10 @@ Arguments:
     </div>
   </py:def>
 
-  <py:with vars="fields = [f for f in fields if not f.skip and f.name not in ('type', 'owner', 'keywords')];
-      small_fields = [f for f in fields if f.type not in ('text', 'textarea') and f.name != 'cc'];
-      text_fields = [f for f in fields if f.type == 'text' or f.name == 'cc'];
-      area_fields = [f for f in fields if f.type == 'textarea'];
+  <py:with vars="basefields = [f for f in fields if not f.skip and f.name not in ('type', 'owner', 'keywords')];
+      small_fields = [f for f in basefields if f.type not in ('text', 'textarea') and f.name != 'cc'];
+      text_fields = [f for f in basefields if f.type == 'text' or f.name == 'cc'];
+      area_fields = [f for f in basefields if f.type == 'textarea'];
       _colcount = colcount or 6">
     <div class="properties" style="margin: 1.2em 0px">
       <py:with vars="_fields, csscls, count, fontsize, is_inline =