Revision 1040:ff783f2cc500 app/views/projects

View differences:

app/views/projects/_form.html.erb
21 21
<br />
22 22
  <em> <%= l(:text_project_homepage_info) %></em>
23 23
</p>
24
<p><%= f.check_box :is_public %>
24
<p>
25
<%= label(:project, :is_public_1, l(:field_public_or_private) + content_tag("span", " *", :class => "required")) %>
26
<%
27
   # if the project hasn't been created fully yet, then we don't
28
   # want to set either public or private (make the user decide)
29
   initialised = !@project.id.nil?
30
%>
31
  <%= f.radio_button :is_public, 1, :checked => (initialised && @project.is_public?) %>
32
  <%= l(:text_project_public_info) %>
25 33
<br />
26
  <em> <%= l(:text_project_visibility_info) %></em>
34
  <%= f.radio_button :is_public, 0, :checked => (initialised && !@project.is_public?) %> 
35
  <%= l(:text_project_private_info) %>
36
<br>
37
  <em><%= l(:text_project_visibility_info) %></em>
27 38
</p>
28 39
<%= wikitoolbar_for 'project_description' %>
29 40

  
app/views/projects/_members_box.html.erb
1 1
  <% if @users_by_role.any? %>
2
  <div class="members box">
2
  <div id="memberbox"><div class="box">
3 3
    <h3><%=l(:label_member_plural)%></h3>
4 4
    <p><% @users_by_role.keys.sort.each do |role| %>
5 5
    <%=h role %>: <%= @users_by_role[role].sort.collect{|u| link_to_user u}.join(", ") %><br />
6 6
    <% end %></p>
7
  </div>
7
  </div></div>
8 8
  <% end %>
app/views/projects/explore.html.erb
1 1

  
2
<% cache(:action => 'explore', :action_suffix => 'tags', :expires_in => 1.hour) do %>
2 3
<h2><%= l(:label_explore_projects) %></h2>
3

  
4 4
  <div class="tags box">
5 5
  <h3><%=l(:label_project_tags_all)%></h3>
6 6
    <%= render :partial => 'projects/tagcloud' %>
7 7
  </div>
8
<% end %>
9

  
8 10
<div class="splitcontentleft">
11
  <% cache(:action => 'explore', :action_suffix => 'busy_institutions', :expires_in => 1.hour) do %>
9 12
  <div class="institutions box">
10 13
  <h3><%=l(:label_institutions_busy)%></h3>
11 14
    <%= render :partial => 'activities/busy_institution' %>
12 15
  </div>
16
  <% end %>
13 17
  <div class="projects box">
14 18
  <h3><%=l(:label_project_latest)%></h3>
15 19
    <%= render :partial => 'projects/latest' %>
16 20
  </div>
17 21
</div>
18 22
<div class="splitcontentright">
23
  <% cache(:action => 'explore', :action_suffix => 'busy_projects', :expires_in => 1.hour) do %>
19 24
  <div class="projects box">
20 25
  <h3><%=l(:label_projects_busy)%></h3>
21 26
    <%= render :partial => 'activities/busy' %>
22 27
  </div>
28
  <% end %>
23 29
</div>
app/views/projects/new.html.erb
3 3
<% labelled_tabular_form_for @project do |f| %>
4 4
<%= render :partial => 'form', :locals => { :f => f } %>
5 5
<%= submit_tag l(:button_create) %>
6
<%= submit_tag l(:button_create_and_continue), :name => 'continue' %>
7 6
<%= javascript_tag "Form.Element.focus('project_name');" %>
8 7
<% end %>

Also available in: Unified diff