S.No | {% if group_by_datewise == 1 and group_by_role == 1 %}Date | Role | {% elif group_by_datewise == 1 and group_by_role == 0 %}Date | {% elif group_by_datewise == 0 and group_by_role == 1 %}Role | {% else %}Title | {% endif %}Count |
---|---|---|---|---|---|---|
{{loop.index}} | {% if group_by_datewise == 1 and group_by_role == 1 %}{{row.date_1}} | {{row.role}} | {% elif group_by_datewise == 1 and group_by_role == 0 %}{{row.date_1}} | {% elif group_by_datewise == 0 and group_by_role == 1 %}{{row.role}} | {% else %}Signin Count | {% endif %}{{row.count_1}} |
Record not available |
S.No | {% if column_name %} {% for col_name in column_name : %}{{ col_name.replace("_" , " ").upper() or '' }} | {% endfor %} {% endif %}||
---|---|---|---|
{{loop.index}} | {% if column_name_for_tbody %} {% for col_na in column_name_for_tbody : %} {% if "created_at" in col_na : %} {% set scan_time = row[col_na].strftime("%d-%m-%Y %H:%M:%S") %}{{ scan_time or ''}} | {% endif %} {% if "role" in col_na : %} {% set role_1 = row[col_na] %}{{ role_1 or 'Reference'}} | {% endif %} {% if col_na not in ["created_at","role"] : %}{{row[col_na] or ''}} | {% endif %} {% endfor %} {% endif %}