Commit 904e05d41b9141af9e05b83fe7882cdb0881c971
1 parent
e32e647e
Exists in
master
and in
39 other branches
Adding icon and removing div not needed
Showing
1 changed file
with
1 additions
and
3 deletions
Show diff stats
src/templates/search/search.html
| ... | ... | @@ -43,13 +43,11 @@ |
| 43 | 43 | {% endfor %} |
| 44 | 44 | </select> |
| 45 | 45 | {% else %} |
| 46 | - <div class="input-group"> | |
| 47 | 46 | <input type="text" class="form-control" placeholder="{{ field_display }}" name="{{ field_lookup }}" {% if field_value %}value="{{ field_value }}"{% endif %}> |
| 48 | - </div> | |
| 49 | 47 | {% endifequal %} |
| 50 | 48 | </div> |
| 51 | 49 | {% endfor %} |
| 52 | - <input type="submit" class="btn btn-default pull-right" value="{% trans 'Filter' %}" /> | |
| 50 | + <button type="submit" class="btn btn-default pull-right"><span class="glyphicon glyphicon-filter"></span> {% trans 'Filter' %}</button> | |
| 53 | 51 | </form> |
| 54 | 52 | <br /><hr /> |
| 55 | 53 | {% endif %} | ... | ... |