myexperiment-hackers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[myexperiment-hackers] [2384] trunk/app/views: added missing content_typ


From: noreply
Subject: [myexperiment-hackers] [2384] trunk/app/views: added missing content_type views
Date: Wed, 21 Apr 2010 11:59:47 -0400 (EDT)

Revision
2384
Author
dgc
Date
2010-04-21 11:59:46 -0400 (Wed, 21 Apr 2010)

Log Message

added missing content_type views

Added Paths

Diff

Added: trunk/app/views/content_types/_breadcrumbs.rhtml (0 => 2384)


--- trunk/app/views/content_types/_breadcrumbs.rhtml	                        (rev 0)
+++ trunk/app/views/content_types/_breadcrumbs.rhtml	2010-04-21 15:59:46 UTC (rev 2384)
@@ -0,0 +1,11 @@
+<li><%= link_to 'Content Types', content_types_path %></li>
+
+<% if ["show"].include? controller.action_name.to_s %>
+
+  <li><b>&#187;</b></li>
+  
+  <% case controller.action_name.to_s; when "show" %>
+    <li><%= h(@content_type.title) %></li>
+  <% end %>
+<% end %>
+

Added: trunk/app/views/content_types/_subnav.rhtml ( => )


Added: trunk/app/views/content_types/index.rhtml
===================================================================
--- trunk/app/views/content_types/index.rhtml	                        (rev 0)
+++ trunk/app/views/content_types/index.rhtml	2010-04-21 15:59:46 UTC (rev 2384)
@@ -0,0 +1,22 @@
+<% t "Content Types" -%>
+
+<h1>All Content Types</h1>
+
+<% if @content_types.empty? %>
+
+  <p>There are no Content Type entries to display.</p>
+
+<% else %>
+
+  <%= render :partial => "layouts/paginate", :locals => { :collection => @content_types } %>
+
+  <ul>
+    <% @content_types.each do |ct| %>
+      <li><%= link_to(h(ct.title), content_type_path(ct)) %></li>
+    <% end %>
+  </ul>
+
+  <%= render :partial => "layouts/paginate", :locals => { :collection => @content_types } %>
+
+<% end %>
+

Added: trunk/app/views/content_types/show.rhtml (0 => 2384)


--- trunk/app/views/content_types/show.rhtml	                        (rev 0)
+++ trunk/app/views/content_types/show.rhtml	2010-04-21 15:59:46 UTC (rev 2384)
@@ -0,0 +1,84 @@
+<% t "#{h @content_type.title}" -%>
+
+<ul class="sectionIcons">
+  <li><%= icon('workflow', content_types_path, nil, nil, 'All Content Types')%></li>
+</ul>
+
+<h1>Content Type: <%= h @content_type.title %></h1>
+
+<div class="contribution_left_box">
+	
+	<div class="box_simple" style="margin: 0 0 0.4em 0;">
+		<% unless @content_type.description.nil? or @content_type.description.empty? %>
+			<%= @content_type.description_html %>
+		<% else %>
+			<p><i>No description</i></p>
+		<% end %>
+	</div>
+	
+	<p>
+	  <b>Created at:</b>
+	  <%=datetime @content_type.created_at %>
+	</p>
+	
+  <% if @content_type.updated_at && @content_type.updated_at != @content_type.created_at %>
+    <p>
+      <b>Updated at:</b>
+      <%=datetime @content_type.updated_at %>
+    </p>
+  <% end %>
+	
+</div>
+
+<div class="contribution_right_box">
+
+  <div class="contribution_section_box">
+    <p class="heading">
+      <%= info_icon_with_tooltip("The maintainer is the person that manages this entry.  This person is not necessarily affiliated with any referenced tools, products or organisations.") %>
+      Maintainer
+    </p>
+    <% if @content_type.user.nil? %>
+      <p><small>This content type entry does not have a specific maintainer.  Please
+      contact the adminstrators of <%= Conf.sitename %> for assistance in providing
+      corrections or alterations to this entry.</small></p>
+    <% else %>
+      <p>
+        <center>
+          <%= render :partial => "users/avatar", :locals => { :user => @content_type.user, :size => 60 } %>
+        </center>
+      </p>
+      <p><small>
+        Please note that <%=h @content_type.user.name -%> does not necessarily
+        represent any tools, products or organisations described in this page.
+      </small></p>
+    <% end %>
+  </div>
+
+  <div class="contribution_section_box">
+    <p class="heading">
+      <%= info_icon_with_tooltip("General statistics about this Content Type.") %>
+      Statistics
+    </p>
+    <p style="font-size: 108%;">
+      <center>
+
+        <% if @total_count.zero? %>
+          <p><small>There are no contributables in <%= Conf.sitename %> of this Content Type.</small></p>
+        <% else %>
+          <ul>
+            <% if @workflow_count > 0 %>
+              <li><%= @workflow_count -%> workflow<%= @workflow_count == 1 ? "" : "s" -%></li>
+            <% end %>
+            <% if @blob_count > 0 %>
+              <li><%= @blob_count -%> file<%= @blob_count == 1 ? "" : "s" -%></li>
+            <% end %>
+          </ul>
+        <% end %>
+      </center>
+    </p>
+  </div>
+
+</div>
+
+<div class="clearer">&nbsp;</div>
+

reply via email to

[Prev in Thread] Current Thread [Next in Thread]