diff options
Diffstat (limited to 'app/views/admin')
-rw-r--r-- | app/views/admin/blogs/_form.html.haml | 2 | ||||
-rw-r--r-- | app/views/admin/games/_form.html.haml | 2 | ||||
-rw-r--r-- | app/views/admin/streams/_form.html.haml | 2 | ||||
-rw-r--r-- | app/views/admin/updates/_form.html.haml | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/app/views/admin/blogs/_form.html.haml b/app/views/admin/blogs/_form.html.haml index 36925af..80a1b00 100644 --- a/app/views/admin/blogs/_form.html.haml +++ b/app/views/admin/blogs/_form.html.haml | |||
@@ -7,7 +7,7 @@ | |||
7 | = f.text_field :slug, placeholder: "insert-slug-here" | 7 | = f.text_field :slug, placeholder: "insert-slug-here" |
8 | .body-field | 8 | .body-field |
9 | = f.label :body | 9 | = f.label :body |
10 | = f.cktext_area :body | 10 | = f.text_area :body |
11 | %fieldset#details | 11 | %fieldset#details |
12 | - if f.object.errors.any? | 12 | - if f.object.errors.any? |
13 | #errors.details-module | 13 | #errors.details-module |
diff --git a/app/views/admin/games/_form.html.haml b/app/views/admin/games/_form.html.haml index 2ef4463..bc31c26 100644 --- a/app/views/admin/games/_form.html.haml +++ b/app/views/admin/games/_form.html.haml | |||
@@ -4,7 +4,7 @@ | |||
4 | = f.text_field :title, placeholder: "Title" | 4 | = f.text_field :title, placeholder: "Title" |
5 | .description-field | 5 | .description-field |
6 | = f.label :description | 6 | = f.label :description |
7 | = f.cktext_area :description | 7 | = f.text_area :description |
8 | %fieldset#details | 8 | %fieldset#details |
9 | - if f.object.errors.any? | 9 | - if f.object.errors.any? |
10 | #errors.details-module | 10 | #errors.details-module |
diff --git a/app/views/admin/streams/_form.html.haml b/app/views/admin/streams/_form.html.haml index e04a3fb..a4d8c46 100644 --- a/app/views/admin/streams/_form.html.haml +++ b/app/views/admin/streams/_form.html.haml | |||
@@ -7,7 +7,7 @@ | |||
7 | = f.text_field :slug, placeholder: "insert-slug-here" | 7 | = f.text_field :slug, placeholder: "insert-slug-here" |
8 | .body-field | 8 | .body-field |
9 | = f.label :body | 9 | = f.label :body |
10 | = f.cktext_area :body | 10 | = f.text_area :body |
11 | %fieldset#details | 11 | %fieldset#details |
12 | - if f.object.errors.any? | 12 | - if f.object.errors.any? |
13 | #errors.details-module | 13 | #errors.details-module |
diff --git a/app/views/admin/updates/_form.html.haml b/app/views/admin/updates/_form.html.haml index 9dd8741..f20e5a0 100644 --- a/app/views/admin/updates/_form.html.haml +++ b/app/views/admin/updates/_form.html.haml | |||
@@ -4,7 +4,7 @@ | |||
4 | = f.text_field :title, value: @stream.title, readonly: true | 4 | = f.text_field :title, value: @stream.title, readonly: true |
5 | .body-field | 5 | .body-field |
6 | = f.label :body | 6 | = f.label :body |
7 | = f.cktext_area :body | 7 | = f.text_area :body |
8 | %fieldset#details | 8 | %fieldset#details |
9 | - if f.object.errors.any? | 9 | - if f.object.errors.any? |
10 | #errors.details-module | 10 | #errors.details-module |