diff options
author | Seb Bacon <seb.bacon@gmail.com> | 2011-09-16 09:38:11 +0100 |
---|---|---|
committer | Seb Bacon <seb.bacon@gmail.com> | 2011-09-16 12:09:35 +0100 |
commit | 685efa20c18e6b8d2d446a42636cc8fc0138f3c0 (patch) | |
tree | 59a2b0c588df4627e5a0260ab12393ca3c82cabf | |
parent | a70b878223af300cb7177ac9fb430cdbd6e09963 (diff) |
Explain "latest_*" varieties of term.
-rw-r--r-- | app/views/general/search.rhtml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/views/general/search.rhtml b/app/views/general/search.rhtml index 4c5ea974c..6f0d25da4 100644 --- a/app/views/general/search.rhtml +++ b/app/views/general/search.rhtml @@ -234,6 +234,8 @@ </ul> <h2 id="statuses"><%= _('Table of statuses') %></h2> + <p><%= _("All the options below can use <strong>status</strong> or <strong>latest_status</strong> before the colon. For example, <strong>status:not_held</strong> will match requests which have <em>ever</em> been marked as not held; <strong>latest_status:not_held</strong> will match only requests that are <em>currently</em> marked as not held.") %></p> + <table class="status_table"> <tr><td><strong><%=search_link('status:waiting_response', nil, nil, true)%></strong></td><td><%= _('Waiting for the public authority to reply') %></td></tr> <tr><td><strong><%=search_link('status:not_held', nil, nil, true)%></strong></td><td><%= _('The public authority does not have the information requested') %></td></tr> @@ -249,7 +251,7 @@ </table> <h2 id="varieties"><%= _('Table of varieties') %></h2> - + <p><%= _("All the options below can use <strong>variety</strong> or <strong>latest_variety</strong> before the colon. For example, <strong>variety:sent</strong> will match requests which have <em>ever</em> been sent; <strong>latest_variety:sent</strong> will match only requests that are <em>currently</em> marked as sent.") %></p> <table class="status_table"> <tr><td><strong><%=search_link('variety:sent', nil, nil, true)%></strong></td><td><%= _('Original request sent') %></td></tr> <tr><td><strong><%=search_link('variety:followup_sent', nil, nil, true)%></strong></td><td><%= _('Follow up message sent by requester') %></td></tr> |