{% extends "base.html" %} {% import "/visit_forms.html" as form %} {% block title %}월별 접속자집계{% endblock title %} {% block subtitle %}월별 접속자집계{% endblock subtitle %} {% block content %} {{ form.search(request, fr_date, to_date) }} {{ form.anchor('month', fr_date, to_date) }}
{% for visit in visits %} {% else %} {% endfor %}
월별 접속자집계 목록
년-월 그래프 접속자수 비율(%)
{{ visit.visit_month }}
{{ visit.count|number_format }} {{ visit.percent }}
자료가 없습니다.
합계 {{ total_records|number_format }} 100%
{% endblock content %}