##// END OF EJS Templates
not add empty header/footer to notification emails (#13482)...
not add empty header/footer to notification emails (#13482) Contributed by Max Horn. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11721 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r11403:3749e4eb989d
r11491:19f70c95d1ae
Show More
_form.html.erb
31 lines | 1.1 KiB | text/plain | TextLexer
Jean-Philippe Lang
Resourcified repositories for CRUD operations to prepare for multiple SCM per project (#779)....
r8528 <%= error_messages_for 'repository' %>
<div class="box tabular">
<p>
<%= label_tag('repository_scm', l(:label_scm)) %><%= scm_select_tag(@repository) %>
<% if @repository && ! @repository.class.scm_available %>
Jean-Philippe Lang
Makes error class more specific to prevent clashes with syntax highlight (#10193)....
r8715 <em class="info error"><%= l(:text_scm_command_not_available) %></em>
Jean-Philippe Lang
Resourcified repositories for CRUD operations to prepare for multiple SCM per project (#779)....
r8528 <% end %>
</p>
Jean-Philippe Lang
Adds support for multiple repositories per project (#779)....
r8530 <p><%= f.check_box :is_default, :label => :field_repository_is_default %></p>
Toshi MARUYAMA
replace tabs to spaces and code cleanup at app/views/repositories/_form.html.erb...
r11403 <p>
<%= f.text_field :identifier, :disabled => @repository.identifier_frozen? %>
Jean-Philippe Lang
Repository Identifier should be frozen (#11109)....
r9898 <% unless @repository.identifier_frozen? %>
Toshi MARUYAMA
replace tabs to spaces and code cleanup at app/views/repositories/_form.html.erb...
r11403 <em class="info">
<%= l(:text_length_between, :min => 1, :max => Repository::IDENTIFIER_MAX_LENGTH) %> <%= l(:text_repository_identifier_info).html_safe %>
</em>
<% end %>
</p>
Jean-Philippe Lang
Adds support for multiple repositories per project (#779)....
r8530
Jean-Philippe Lang
Resourcified repositories for CRUD operations to prepare for multiple SCM per project (#779)....
r8528 <% button_disabled = true %>
<% if @repository %>
Toshi MARUYAMA
replace tabs to spaces and code cleanup at app/views/repositories/_form.html.erb...
r11403 <% button_disabled = ! @repository.class.scm_available %>
<%= repository_field_tags(f, @repository) %>
Jean-Philippe Lang
Resourcified repositories for CRUD operations to prepare for multiple SCM per project (#779)....
r8528 <% end %>
</div>
<p>
<%= submit_tag(@repository.new_record? ? l(:button_create) : l(:button_save), :disabled => button_disabled) %>
Toshi MARUYAMA
replace tabs to spaces and code cleanup at app/views/repositories/_form.html.erb...
r11403 <%= link_to l(:button_cancel), settings_project_path(@project, :tab => 'repositories') %>
Toshi MARUYAMA
add newline at end of app/views/repositories/_form.html.erb...
r8554 </p>