{% extends "base.html" %} {% block title %}My Activity - RAZOR SMS PANEL{% endblock %} {% block content %}
| # | Action | Details | IP Address | User Agent | Date/Time |
|---|---|---|---|---|---|
| {{ activity.id }} | {{ activity.action }} | {{ activity.details or 'N/A' }} | {{ activity.ip_address or 'N/A' }} |
{{ activity.user_agent[:50] + '...' if activity.user_agent and activity.user_agent|length > 50 else activity.user_agent or 'N/A' }} | {{ activity.created_at.strftime('%Y-%m-%d %H:%M:%S') if activity.created_at else 'N/A' }} |
| No activity records found. | |||||