diff options
author | Faton Selishta <fatonselishta@gmail.com> | 2011-06-14 14:18:00 +0200 |
---|---|---|
committer | Faton Selishta <fatonselishta@gmail.com> | 2011-06-14 14:18:00 +0200 |
commit | 57d4dd1a97f54c9b9a26320c4410003e45f6429d (patch) | |
tree | 6af0f3afe36f29365402e3b0591e1cf5cc06b080 | |
parent | c7a90098c00f31899cf763a180e2bf6da5aee435 (diff) |
new request states for our code
-rw-r--r-- | app/views/request/_describe_state.rhtml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/app/views/request/_describe_state.rhtml b/app/views/request/_describe_state.rhtml index b72f7711c..f1db6ec18 100644 --- a/app/views/request/_describe_state.rhtml +++ b/app/views/request/_describe_state.rhtml @@ -38,6 +38,10 @@ <label for="gone_postal<%=id_suffix%>"><%= _('They are going to reply <strong>by post</strong>') %></label> </div> + <div> + <%= radio_button "incoming_message", "described_state", "deadline_extended", :id => 'deadline_extended' + id_suffix %> + <label for="deadline_extended<%=id_suffix%>"><%= _('Authority has requested <strong>extension of the deadline.</strong>') %></label> + </div> <hr> <!------------------------------------------------> <% if @info_request.described_state == 'internal_review' %> @@ -61,6 +65,11 @@ <label for="rejected<%=id_suffix%>"><%= _('My request has been <strong>refused</strong>') %></label> </div> + <div> + <%= radio_button "incoming_message", "described_state", "wrong_response", :id => 'wrong_response' + id_suffix %> + <label for="rejected<%=id_suffix%>"><%= _('Authority has replied but the response <strong>does not correspond to the request</strong>') %></label> + </div> + <hr> <!------------------------------------------------> <div> |