##// END OF EJS Templates
css cleaning...
css cleaning git-svn-id: http://redmine.rubyforge.org/svn/trunk@108 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r103:bc4415850105
r105:d3600e729fbc
Show More
_form.rhtml
37 lines | 1.5 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Initial commit...
r2 <%= error_messages_for 'project' %>
Jean-Philippe Lang
svn browser merged in trunk...
r103
Jean-Philippe Lang
0.3 unstable...
r10 <div class="box">
Jean-Philippe Lang
Initial commit...
r2 <!--[form:project]-->
Jean-Philippe Lang
tables and forms redesign,...
r19 <p><%= f.text_field :name, :required => true %></p>
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
* new report: project activity...
r42 <% if admin_loggedin? and !@root_projects.empty? %>
Jean-Philippe Lang
tables and forms redesign,...
r19 <p><%= f.select :parent_id, (@root_projects.collect {|p| [p.name, p.id]}), { :include_blank => true } %></p>
Jean-Philippe Lang
v0.2.0...
r5 <% end %>
Jean-Philippe Lang
tables and forms redesign,...
r19 <p><%= f.text_area :description, :required => true, :cols => 60, :rows => 3 %></p>
<p><%= f.text_field :homepage, :size => 40 %></p>
<p><%= f.check_box :is_public %></p>
Jean-Philippe Lang
0.3 unstable...
r10
Jean-Philippe Lang
custom field tags...
r18 <% for @custom_value in @custom_values %>
<p><%= custom_field_tag_with_label @custom_value %></p>
Jean-Philippe Lang
0.3 unstable...
r10 <% end %>
Jean-Philippe Lang
* new report: project activity...
r42
<% unless @custom_fields.empty? %>
<p><label><%=l(:label_custom_field_plural)%></label>
Jean-Philippe Lang
tables and forms redesign,...
r19 <% for custom_field in @custom_fields %>
Jean-Philippe Lang
* new report: project activity...
r42 <%= check_box_tag "custom_field_ids[]", custom_field.id, ((@project.custom_fields.include? custom_field) or custom_field.is_for_all?), (custom_field.is_for_all? ? {:disabled => "disabled"} : {}) %>
Jean-Philippe Lang
tables and forms redesign,...
r19 <%= custom_field.name %>
Jean-Philippe Lang
* new report: project activity...
r42 <% end %></p>
<% end %>
Jean-Philippe Lang
svn browser merged in trunk...
r103 <!--[eoform:project]-->
</div>
<div class="box"><h3><%= check_box_tag "repository_enabled", 1, !@project.repository.nil?, :onclick => "Element.toggle('repository');" %> <%= l(:label_repository) %></h3>
<%= hidden_field_tag "repository_enabled", 0 %>
<div id="repository">
<% fields_for :repository, @project.repository, { :builder => TabularFormBuilder, :lang => current_language} do |repository| %>
<p><%= repository.text_field :url, :size => 60, :required => true %><br />(http://, https://, svn://)</p>
<% end %>
</div>
<%= javascript_tag "Element.hide('repository');" if @project.repository.nil? %>
Jean-Philippe Lang
0.3 unstable...
r10 </div>