소스 검색

add "Last year" option to time range selection

Noémi Ványi 8 년 전
부모
커밋
2fc1091b7f
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3
    0
      searx/templates/oscar/time-range.html

+ 3
- 0
searx/templates/oscar/time-range.html 파일 보기

@@ -11,4 +11,7 @@
11 11
     <option id="time-range-month" value="month" {{ "selected" if time_range=="month" else ""}}>
12 12
         {{ _('Last month') }}
13 13
     </option>
14
+    <option id="time-range-year" value="year" {{ "selected" if time_range=="year" else ""}}>
15
+        {{ _('Last year') }}
16
+    </option>
14 17
 </select>