Skip to content
This repository has been archived by the owner on Dec 8, 2017. It is now read-only.

Commit

Permalink
Added new dropdowns to HTML/JS - doesn't seem to work yet.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob Kaplan-Moss committed Mar 15, 2016
1 parent 14a9667 commit b8bbf5d
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,12 @@ <h2 class="h3 filter-header">Filter by:</h2>
</div>

<!-- Socioeconomic Category -->
<!-- FIXME -->
<div class="form-group-dropdown">
<label for="socioeconomic-dropdown">Socioeconomic Category</label>
<select name="socioeconomic-dropdown" id="socioeconomic-dropdown" >
<option default value="all">All</option>
</select>
</div>

<!-- NAICS Code -->
<div class="form-group-dropdown">
Expand Down Expand Up @@ -52,7 +57,12 @@ <h2 class="h3 filter-header">Filter by:</h2>
</div>

<!-- Contract Type -->
<!-- FIXME -->
<div class="form-group-dropdown">
<label for="contract_type-dropdown">Contract Type</label>
<select name="contract_type-dropdown" id="contract_type-dropdown" >
<option default value="all">All</option>
</select>
</div>

<!-- Award Status -->
<div class="form-group-dropdown">
Expand Down
4 changes: 3 additions & 1 deletion forecast-admin/forecast/static/assets/js/src/pagination.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ var listOptions = {
'contract_type',
'office',
'dollar_value_min',
'dollar_value_max'
'dollar_value_max',
'socioeconomic'
],
page: opportunitiesPerPage,
plugins: [
Expand Down Expand Up @@ -225,3 +226,4 @@ $(document).ready(function() {
});

});

0 comments on commit b8bbf5d

Please sign in to comment.