<%= form_for @contact, url: contacts_path, html: {class: "roadmap-form"} do |f| %>
@@ -36,7 +36,7 @@
<%= f.label(:message, _('Message'), class: "align-top required") %>
- <%= f.text_area(:message, class: "left-indent required input-large", rows: 10) %>
+ <%= f.text_area(:message, class: "required input-large", rows: 10, style: "height: 160px;") %>
@@ -53,8 +53,7 @@
locals: {id: 'create_contact_submit',
val: 'Submit',
disabled_initially: true,
- tooltip: _('Fill in the required fields'),
- classes: 'left-indent'} %>
+ tooltip: _('Fill in the required fields')} %>
diff --git a/app/views/devise/passwords/new.html.erb b/app/views/devise/passwords/new.html.erb
index 6be60ae..0927721 100644
--- a/app/views/devise/passwords/new.html.erb
+++ b/app/views/devise/passwords/new.html.erb
@@ -6,7 +6,7 @@
<%= _('Please enter your email below and we will send you instructions on how to reset your password.') %>
<%= _('Please enter your email below and we will send you instructions on how to reset your password.') %>
<%= form_for resource, as: 'user', url: user_password_path, html: {class: "password-reset roadmap-form", method: :post} do |f| %>
diff --git a/app/views/guidance_groups/_show.html.erb b/app/views/guidance_groups/_show.html.erb
new file mode 100644
index 0000000..263fdd0
--- /dev/null
+++ b/app/views/guidance_groups/_show.html.erb
@@ -0,0 +1,8 @@
+
+ <%= group[:org] %> guidance on <%= theme %>
+
+
+
+
+ <%= raw group[:text] %>
+
\ No newline at end of file
diff --git a/app/views/guidances/admin_index.html.erb b/app/views/guidances/admin_index.html.erb
index 1d4dc80..71b4082 100644
--- a/app/views/guidances/admin_index.html.erb
+++ b/app/views/guidances/admin_index.html.erb
@@ -4,7 +4,7 @@
<%= _('Guidance') %>
-
+
<%= _("First create a guidance group. This could be institution wide or a subset e.g. a particular College / School, Institute or department. When you create guidance you'll be asked to assign it to a guidance group.") %>
diff --git a/app/views/guidances/untitled.txt b/app/views/guidances/untitled.txt
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/app/views/guidances/untitled.txt
diff --git a/app/views/notes/_add.html.erb b/app/views/notes/_add.html.erb
index 2817b90..104525e 100644
--- a/app/views/notes/_add.html.erb
+++ b/app/views/notes/_add.html.erb
@@ -16,9 +16,9 @@
<%= f.hidden_field :plan_id, value: plan_id %>
<% end %>
diff --git a/app/views/notes/_list.html.erb b/app/views/notes/_list.html.erb
index daf6a20..071dfb8 100644
--- a/app/views/notes/_list.html.erb
+++ b/app/views/notes/_list.html.erb
@@ -1,14 +1,7 @@
-
-<% if notes.count > 1 then%>
- <% style_to_add = "height:150px; overflow-y:auto;" %>
-<%else%>
- <% style_to_add = "" %>
-<%end%>
-
-
+
<% notes.each do |note|%>
@@ -23,10 +16,10 @@
<% if note.archived %>
<% if note.archived_by == current_user.id %>
- <%= _('Note removed by you')%>
+ <%= _('Comment removed by you')%>
<% else %>
<% archived_by_user = User.find(note.archived_by) %>
- <%= _('Note removed by')%> <%= archived_by_user.name %>
+ <%= _('Comment removed by')%> <%= archived_by_user.name %>
<%end%>
<%else%>
diff --git a/app/views/notes/_view.html.erb b/app/views/notes/_view.html.erb
index 0610f0c..efe24d2 100644
--- a/app/views/notes/_view.html.erb
+++ b/app/views/notes/_view.html.erb
@@ -4,7 +4,7 @@
- <%= _('Noted by:')%>
+ <%= _('Comment from:')%>
- <%= user.name%> (<%= l note.updated_at, format: :custom %>)
- <%= raw note.text %>
diff --git a/app/views/notes/create.js.erb b/app/views/notes/create.js.erb
index 4cd1b85..532ce25 100644
--- a/app/views/notes/create.js.erb
+++ b/app/views/notes/create.js.erb
@@ -1,7 +1,7 @@
// rewrite the number of notes heading e.g. Notes(3)
<% noteslabel = "#notes_number_#{@question.id}" %>
-$("<%=noteslabel%>").html("Notes (<%= @num_notes %>)");
+$("<%=noteslabel%>").html("Comments (<%= @num_notes %>)");
// need to remove the existing tinymce editor otherwise
tinymce.remove(".tinymce");
diff --git a/app/views/orgs/admin_edit.html.erb b/app/views/orgs/admin_edit.html.erb
index 76d93fe..770578b 100644
--- a/app/views/orgs/admin_edit.html.erb
+++ b/app/views/orgs/admin_edit.html.erb
@@ -21,7 +21,7 @@