app/soc/templates/modules/ghop/task/search/search.html
changeset 2827 58e2a02e35b4
equal deleted inserted replaced
2826:211783aa20d5 2827:58e2a02e35b4
       
     1 {% extends "soc/models/list.html" %}
       
     2 {% comment %}
       
     3 Licensed under the Apache License, Version 2.0 (the "License");
       
     4 you may not use this file except in compliance with the License.
       
     5 You may obtain a copy of the License at
       
     6 
       
     7   http://www.apache.org/licenses/LICENSE-2.0
       
     8 
       
     9 Unless required by applicable law or agreed to in writing, software
       
    10 distributed under the License is distributed on an "AS IS" BASIS,
       
    11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
       
    12 See the License for the specific language governing permissions and
       
    13 limitations under the License.
       
    14 {% endcomment %}
       
    15 {% load ghop_forms_helpers %}
       
    16 
       
    17 {% block stylesheet %}
       
    18 {{ block.super }}
       
    19 <link rel='stylesheet' href='/soc/content/css/jquery-multiSelect090808.css' 
       
    20 type='text/css' media='all' />
       
    21 {% endblock %}
       
    22 
       
    23 {% block scripts %}
       
    24 {{ block.super }}
       
    25 <script type="text/javascript" src="/jquery/jquery-multiSelect.js"></script>
       
    26 {% endblock %}
       
    27 
       
    28 {% block body %}
       
    29 <form method="GET">
       
    30 <table>
       
    31 <tr>
       
    32 <td>{% as_filter_multiselect "Organization" org_entities %}</td>
       
    33 <td>{% as_filter_multiselect "Status" public_status %}</td>
       
    34 <td>{% as_filter_multiselect "Tags" tags %}</td>
       
    35 <td>{% as_filter_multiselect "Difficulty" difficulties %}</td>
       
    36 </tr>
       
    37 </table>
       
    38 <br />
       
    39 <input style="font-weight: bold" type="submit" 
       
    40 value="Search"/></span>
       
    41 </form>
       
    42 {{ block.super }}
       
    43 {% endblock %}
       
    44