{% extends 'base.html' %} {% load i18n %} {% block title %} {{ source.name }} | {% trans "Source Details" %} | {% trans "Recruitment System" %} {% endblock %} {% block content %}
| {% trans "Name" %} | {{ source.name }} |
|---|---|
| {% trans "Type" %} | {{ source.source_type }} |
| {% trans "Status" %} | {% if source.is_active %} {% trans "Active" %} {% else %} {% trans "Inactive" %} {% endif %} |
| {% trans "Created By" %} | {{ source.created_by }} |
|---|---|
| {% trans "Created At" %} | {{ source.created_at|date:"M d, Y H:i" }} |
| {% trans "Updated At" %} | {{ source.updated_at|date:"M d, Y H:i" }} |
{{ source.description|default:"-" }}
{{ source.ip_address|default:"Not specified" }}
| {% trans "Time" %} | {% trans "Action" %} | {% trans "Endpoint" %} | {% trans "Method" %} | {% trans "Status" %} |
|---|---|---|---|---|
| {{ log.created_at|date:"M d, Y H:i:s" }} | {{ log.get_action_display }} |
{{ log.endpoint }}
|
{{ log.method }} | {% if log.success %} Success {% else %} Failed {% endif %} |
{% trans "Integration logs will appear here when this source is used for external integrations." %}