Newer
Older
TalkjaSolr / web / WEB-INF / jsp / _result_header.jsp
@haya4 haya4 on 22 Apr 2022 431 bytes restore
  1. <%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
  2. <div id="result_header">
  3. <%if(!StringUtils.isEmpty(query)){ %>
  4. <b><%=StringEscapeUtils.escapeHtml(query)%></b> の検索結果&nbsp;&nbsp;&nbsp;
  5. <%}
  6. if(found > 0){%>
  7. <b><%=found%></b> 件中
  8. <b><%=start+1%></b> -
  9. <b><%=start+rows > found ? found : start+rows%></b> 件目
  10. <%}else{ %>
  11. <b>0</b>
  12. <%} %>
  13. ( <%=qtime/1000%> 秒 )
  14. </div>