##// END OF EJS Templates
Use Postgresql's reset_pk_sequence in Trac importer to reset issue id sequence (#595)....
Use Postgresql's reset_pk_sequence in Trac importer to reset issue id sequence (#595). git-svn-id: http://redmine.rubyforge.org/svn/trunk@1119 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1083:d8ac6d2b7939
r1105:a3dda6dc4a3d
Show More
_form_custom_fields.rhtml
11 lines | 287 B | text/html+ruby | RhtmlLexer
/ app / views / issues / _form_custom_fields.rhtml
Jean-Philippe Lang
Display custom fields in two columns on the issue form....
r1072 <div class="splitcontentleft">
Jean-Philippe Lang
Fixed: custom fields empty on issue/edit (broken by r1086)....
r1075 <% i = 1 %>
<% for @custom_value in values %>
<p><%= custom_field_tag_with_label @custom_value %></p>
Jean-Philippe Lang
Issue properties below the description textarea....
r1083 <% if i == values.size / 2 %>
Jean-Philippe Lang
Display custom fields in two columns on the issue form....
r1072 </div><div class="splitcontentright">
<% end %>
Jean-Philippe Lang
Fixed: custom fields empty on issue/edit (broken by r1086)....
r1075 <% i += 1 %>
Jean-Philippe Lang
Display custom fields in two columns on the issue form....
r1072 <% end %>
</div>
<div style="clear:both;"> </div>