weitere classen durchsuchen

This commit is contained in:
Andreas Stephanides
2014-11-12 21:24:18 +01:00
parent e9245919c3
commit dc124e3810
18 changed files with 99 additions and 19 deletions

View File

@@ -1,8 +1,17 @@
<% unless @results.nil? %>
<%= @results.results.each do |res| %>
<%= render res %>
<ul class="unstyled linkbox-list">
<% @results.results.each do |res| %>
<% if can?(:show, res) %>
<li>
<%= link_to res, :class=>:linkbox do %>
<%= render :partial=>res.class.to_s.pluralize.downcase+"/nlink", :object=>res %>
<% end %>
</li>
<% end %>
<% end %>
</ul>
<% end %>
<% unless @neuigkeiten.empty? %>

View File

@@ -0,0 +1 @@
<h2><%= nlink.name %></h2>

View File

@@ -1,9 +1,9 @@
<h1><%= @modul.name %></h1>
<h1><%= modul.name %></h1>
<div class="row-fluid">
<div class="span8">
<h2><%=I18n.t("modul.lvas")%></h2>
<% @modul.lvas.each_slice(3) do |row| %>
<% modul.lvas.each_slice(3) do |row| %>
<ul>
<% row.each do |lv| %>
<li>
@@ -14,14 +14,14 @@
<% end %>
<h2><%=I18n.t("modul.desc")%></h2>
<p>
<%= raw(@modul.desc) %>
<%= raw(modul.desc) %>
</p>
</div>
<div class="span4">
<div class="lva-sidebar">
<h2><%=I18n.t("modul.mgs")%></h2>
<ul>
<% @modul.modulgruppen.each do |mg| %>
<% modul.modulgruppen.each do |mg| %>
<li>
<%= render 'modulgruppen/kurz', :modulgruppe=>mg %>
</li>

View File

@@ -0,0 +1,2 @@
Modul:
<%= nlink.name %>

View File

@@ -0,0 +1,3 @@
<h2> <%= nlink.title %> </h2>

View File

@@ -0,0 +1,3 @@
<h2 ><%= nlink.name %></h2>

View File

View File

@@ -1,2 +1,17 @@
<h2><%= nlink.name %></h2>
<p><%= nlink.desc_first_words %></p>
<% studium=nlink %>
<div class="media">
<% unless studium.picture.thumb.url.nil? %>
<div class="pull-left">
<%= image_tag studium.picture.thumb.url %>
</div>
<% end %>
<div class="media-body">
<h2>
<%= studium.name + " " + studium.zahl.to_s %>
</h2>
<p>
<b><%= studium.typ%> </b>
</p>
</div>
</div>

View File

@@ -0,0 +1 @@
<h2><%= nlink.title %> </h2>