diff --git a/app/assets/stylesheets/characters.css.scss b/app/assets/stylesheets/characters.css.scss
index 7e483485..003272d6 100644
--- a/app/assets/stylesheets/characters.css.scss
+++ b/app/assets/stylesheets/characters.css.scss
@@ -1,3 +1,6 @@
// Place all the styles related to the Characters controller here.
// They will automatically be included in application.css.
// You can use Sass (SCSS) here: http://sass-lang.com/
+.form-actions {
+ clear: both;
+}
diff --git a/app/views/characters/show.html.erb b/app/views/characters/show.html.erb
index 401a5165..df6e5262 100644
--- a/app/views/characters/show.html.erb
+++ b/app/views/characters/show.html.erb
@@ -2,9 +2,11 @@
<%= render :partial => 'tabs' %>
-
+
- <%= model_class.human_attribute_name(:name) %>:
- <%= @character.name %>
+ - <%= model_class.human_attribute_name(:gender) %>:
+ - <%= @character.gender %>
- <%= model_class.human_attribute_name(:age) %>:
- <%= @character.age %>
- <%= model_class.human_attribute_name(:weight) %>:
@@ -17,6 +19,8 @@
- <%= @character.hairstyle %>
- <%= model_class.human_attribute_name(:eyecolor) %>:
- <%= @character.eyecolor %>
+ - <%= model_class.human_attribute_name(:race) %>:
+ - <%= @character.race %>
- <%= model_class.human_attribute_name(:skintone) %>:
- <%= @character.skintone %>
- <%= model_class.human_attribute_name(:bodytype) %>:
@@ -25,6 +29,64 @@
- <%= @character.identmarks %>
+
+ - Best friend:
+ - <%= @character.bestfriend %>
+ - Religion:
+ - <%= @character.religion %>
+ - Politics:
+ - <%= @character.politics %>
+ - Prejudices:
+ - <%= @character.prejudices %>
+ - Occupation:
+ - <%= @character.occupation %>
+ - Pets:
+ - <%= @character.pets %>
+
+
+
+ - <%= model_class.human_attribute_name(:mannerisms) %>:
+ - <%= @character.mannerisms %>
+
+
+
+ - <%= model_class.human_attribute_name(:birthday) %>:
+ - <%= @character.birthday %>
+ - <%= model_class.human_attribute_name(:birthplace) %>:
+ - <%= @character.birthplace %>
+ - <%= model_class.human_attribute_name(:education) %>:
+ - <%= @character.education %>
+
+
+
+ - <%= model_class.human_attribute_name(:color) %>:
+ - <%= @character.fave_color %>
+ - <%= model_class.human_attribute_name(:food) %>:
+ - <%= @character.fave_food %>
+ - <%= model_class.human_attribute_name(:possession) %>:
+ - <%= @character.fave_possession %>
+ - <%= model_class.human_attribute_name(:weapon) %>:
+ - <%= @character.fave_weapon %>
+ - <%= model_class.human_attribute_name(:animal) %>:
+ - <%= @character.fave_animal %>
+
+
+
+ - <%= model_class.human_attribute_name(:father) %>:
+ - <%= @character.father %>
+ - <%= model_class.human_attribute_name(:mother) %>:
+ - <%= @character.mother %>
+ - <%= model_class.human_attribute_name(:spouse) %>:
+ - <%= @character.spouse %>
+ - <%= model_class.human_attribute_name(:siblings) %>:
+ - <%= @character.siblings %>
+ - <%= model_class.human_attribute_name(:archenemy) %>:
+ - <%= @character.archenemy %>
+
+
+
+
+
<%= link_to t('.back', :default => t("helpers.links.back")),
character_list_path, :class => 'btn' %>