diff --git a/app/views/home/kontakt.html.erb b/app/views/home/kontakt.html.erb new file mode 100644 index 0000000..48cb162 --- /dev/null +++ b/app/views/home/kontakt.html.erb @@ -0,0 +1 @@ +<%= I18n.t "home.kontakt" %> diff --git a/app/views/lvas/compare_tiss.html.erb b/app/views/lvas/compare_tiss.html.erb new file mode 100644 index 0000000..20f0a41 --- /dev/null +++ b/app/views/lvas/compare_tiss.html.erb @@ -0,0 +1,29 @@ +
+
+
+

 

+

 

+ <%= render partial: "lva", object: @lva %> +

<%= I18n.t "lecturers.lecturers" %>

+ <% @lva.lecturers.each do |lec| %> + <%= render :partial=>'lecturers/lec_lva', :object=>lec %> + + <% end %> + + +
+
+

Tiss Version

+ <%= link_to "Von Tiss laden", lva_load_tiss_path(@lva) %> + <%= render partial: "lva", object: @lvatiss %> + +

<%= I18n.t "lecturers.lecturers" %>

+ <% @lvatiss.lecturers.each do |lec| %> + <%= render :partial=>'lecturers/lec_lva', :object=>lec %> + + <% end %> + +
+ +
+
diff --git a/db/migrate/20140316120312_add_pruefungsinformation_to_lva_translations.rb b/db/migrate/20140316120312_add_pruefungsinformation_to_lva_translations.rb new file mode 100644 index 0000000..58271df --- /dev/null +++ b/db/migrate/20140316120312_add_pruefungsinformation_to_lva_translations.rb @@ -0,0 +1,5 @@ +class AddPruefungsinformationToLvaTranslations < ActiveRecord::Migration + def change + add_column :lva_translations, :pruefungsinformation,:text + end +end