aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/request/preview.html.erb
blob: 0265d032878875cb010ad2e4fa0b18f9ddf2e878 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<% if @batch %>
  <% @title = _("Preview new {{law_used_short}} request", :law_used_short => h(@info_request.law_used_short))  %>
<% else %>
  <% @title = _("Preview new {{law_used_short}} request to '{{public_body_name}}", :law_used_short => h(@info_request.law_used_short), :public_body_name => h(@info_request.public_body.name)) %>
<% end %>
<%= form_for(@info_request, :url => (@batch ? new_batch_path : new_request_path), :html => { :id => 'preview_form' }  ) do |f| %>

    <h1><%= _('3. Now check your request') %></h1>
    <ul>
    <li><%= _('Check you haven\'t included any <strong>personal information</strong>.') %></li>
    <li><%= raw(_('Your name, request and any responses will appear in <strong>search engines</strong>
        (<a href="{{url}}">details</a>).', :url => (help_privacy_path+"#public_request").html_safe)) %>
    </li>
    </ul>

    <%= fields_for :outgoing_message do |o| %>

        <div class="correspondence" id="outgoing-0">
            <p class="preview_subject">
                <strong><%= _('To:') %></strong>
                <% if @batch %>
                  <%= _("Your selected authorities")%>
                <% else %>
                  <%=h(@info_request.public_body.name)%>
                <% end %>
                <br><strong><%= _('Subject:') %></strong> <%=h @info_request.email_subject_request %>
            </p>

            <div class="correspondence_text">
                <p><%= @outgoing_message.get_body_for_html_display %></p>
                <%= o.hidden_field(:body) %>
            </div>

            <p class="event_actions">
            </p>
        </div>
    <% end %>

    <p><%= _('<strong>Privacy note:</strong> If you want to request private information about
    yourself then <a href="{{url}}">click here</a>.', :url => (help_requesting_path+"#data_protection").html_safe) %>

    <p>
    <%= f.hidden_field(:title) %>
    <% if @batch %>
      <% params[:public_body_ids].each do |public_body_id| %>
        <%= hidden_field_tag("public_body_ids[]", public_body_id)%>
      <% end %>
    <% else %>
      <%= f.hidden_field(:public_body_id, { :value => @info_request.public_body_id } ) %>
    <% end %>
    <%= f.hidden_field(:tag_string) %>
    <%= hidden_field_tag(:submitted_new_request, 1) %>
    <%= hidden_field_tag(:preview, 0 ) %>
    <%= submit_tag _("Edit this request"), :name => 'reedit', :id => 'reedit_button' %>
    <%= submit_tag _("Send request"), :name => 'submit', :id => 'submit_button' %>
    </p>

    <% if !@info_request.tag_string.empty? %>
        <p><strong><%= _('Tags:') %></strong> <%=h @info_request.tag_string %></p>
    <% end %>

<% end %>