aboutsummaryrefslogtreecommitdiffstats
path: root/web_src/js/features/admin
stat options
Period:
Authors:

Commits per author per week (path 'web_src/js/features/admin')

AuthorW26 2025W27 2025W28 2025W29 2025Total
wxiaoguang00101
Total00101
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<%= labelled_remote_form_for @wiki,
                   :as => :wiki,
                   :url => { :controller => 'wikis', :action => 'edit', :id => @project } do |f| %>

<%= error_messages_for 'wiki' %>

<div class="box tabular">
<p><%= f.text_field :start_page, :size => 60, :required => true %>
<em class="info"><%= l(:text_unallowed_characters) %>: , . / ? ; : |</em></p>
</div>

<div class="contextual">
<%= link_to(l(:button_delete), {:controller => 'wikis', :action => 'destroy', :id => @project},
            :class => 'icon icon-del') if @wiki && !@wiki.new_record? %>
</div>

<%= submit_tag((@wiki.nil? || @wiki.new_record?) ? l(:button_create) : l(:button_save)) %>
<% end %>