summaryrefslogtreecommitdiffstats
path: root/app/views/projects/settings.rhtml
blob: 3f9cba0a06791261cf72bea482b2fac0b143b691 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<h2><%=l(:label_settings)%></h2>

<% if authorize_for('projects', 'edit') %>
	<% labelled_tabular_form_for :project, @project, :url => { :action => "edit", :id => @project } do |f| %>
	<%= render :partial => 'form', :locals => { :f => f } %>
	<%= submit_tag l(:button_save) %>
	<% end %>
	<br />&nbsp;
<% end %>

<div class="box">
<h3><%=l(:label_member_plural)%></h3>
<%= error_messages_for 'member' %>
<table>
<% for member in @project.members.find(:all, :include => :user) %>
	<% unless member.new_record? %>
	<tr>
	<td><%= member.user.display_name %></td>
    <td>
        <% if authorize_for('members', 'edit') %>
        <%= start_form_tag :controller => 'members', :action => 'edit', :id => member %>
        <select name="member[role_id]">
        <%= options_from_collection_for_select @roles, "id", "name", member.role_id %>
        </select>
        <%= submit_tag l(:button_change), :class => "button-small" %>
        <%= end_form_tag %>
        <% end %>
    </td>
    <td>
		<% if authorize_for('members', 'destroy') %>
		<%= start_form_tag :controller => 'members', :action => 'destroy', :id => member %>
		<%= submit_tag l(:button_delete), :class => "button-small" %>
		<%= end_form_tag %>
        <% end %>
    </td>
	</tr>
	<% end %>
<% end %>
</table>
<% if authorize_for('projects', 'add_member') %>
    <hr />
    <label><%=l(:label_member_new)%></label><br/>
    <%= start_form_tag :controller => 'projects', :action => 'add_member', :id => @project %>
    <select name="member[user_id]">
    <%= options_from_collection_for_select @users, "id", "display_name", @member.user_id %>
    </select>
    <select name="member[role_id]">
    <%= options_from_collection_for_select @roles, "id", "name", @member.role_id %>
    </select>
    <%= submit_tag l(:button_add) %>
    <%= end_form_tag %>
<% end %>
</div>

<div class="box">
<h3><%=l(:label_version_plural)%></h3>
<table>
<% for version in @project.versions %>
  <tr>
  <td width="100"><strong><%=h version.name %></strong></td>
  <td width="100"><%= format_date(version.effective_date) %></td>
  <td><%=h version.description %></td>
  <td>&nbsp;&nbsp;&nbsp;
      <%= link_to_if_authorized l(:button_edit), :controller => 'versions', :action => 'edit', :id => version %>
      <% if authorize_for('versions', 'destroy') %>
      &nbsp;
      <%= start_form_tag :controller => 'versions', :action => 'destroy', :id => version %>
      <%= submit_tag l(:button_delete), :class => "button-small" %>
      <%= end_form_tag %>  
      <% end %>
  </td>
  </tr>
<% end %>
</table>
<% if authorize_for('projects', 'add_version') %>
    <hr />
    <%= link_to l(:label_version_new), :controller => 'projects', :action => 'add_version', :id => @project %>
<% end %>
</div>


<div class="box">
<h3><%=l(:label_issue_category_plural)%></h3>
<table>
<% for @category in @project.issue_categories %>
	<% unless @category.new_record? %>
	<tr>
    <td>
        <%= start_form_tag :controller => 'issue_categories', :action => 'edit', :id => @category %>
        <%= text_field 'category', 'name', :size => 25  %>
    </td>
    <td>
        <% if authorize_for('issue_categories', 'edit') %>
        <%= submit_tag l(:button_save), :class => "button-small" %>
        <%= end_form_tag %>
        <% end %>
    </td>
    <td>
        <% if authorize_for('issue_categories', 'destroy') %>
        <%= start_form_tag :controller => 'issue_categories', :action => 'destroy', :id => @category %>
        <%= submit_tag l(:button_delete), :class => "button-small" %>
        <%= end_form_tag %>
        <% end %>
    </td>
	</tr>
	<% end %>
<% end %>
</table>
<% if authorize_for('projects', 'add_issue_category') %>
    <hr />
    <%= start_form_tag :action => 'add_issue_category', :id => @project %>
    <label for="issue_category_name"><%=l(:label_issue_category_new)%></label><br/>
    <%= error_messages_for 'issue_category' %>
    <%= text_field 'issue_category', 'name', :size => 25 %>
    <%= submit_tag l(:button_create) %>
    <%= end_form_tag %>
<% end %>
</div>