{% extends 'ssh_manager/base.html' %} {% load static %} {% block content %}

İşlem Geçmişi

Tüm sistem işlemleri ve logları
{% for log in logs %} {% empty %} {% endfor %}
# Tarih Tip Proje İşlem
{{ forloop.counter }} {{ log.created_at|date:"d.m.Y H:i" }} {% if log.log_type == 'backup' %} 💾 Yedekleme {% else %} ⚙️ Komut {% endif %} {% if 'Proje:' in log.output %} {% with project_name=log.output|cut:'Proje: ' %} {{ project_name|truncatechars:25 }} {% endwith %} {% elif 'Proje:' in log.command %} {% if ')' in log.command %} {% with project_part=log.command|cut:'(Proje: '|cut:')' %} {{ project_part|truncatechars:25 }} {% endwith %} {% else %} {% with project_part=log.command|cut:'Proje: ' %} {{ project_part|truncatechars:25 }} {% endwith %} {% endif %} {% elif log.log_type == 'backup' and 'Backup:' in log.command %} {% with folder_name=log.command|cut:'Backup: ' %} {{ folder_name|truncatechars:25 }} {% endwith %} {% else %} Sistem {% endif %} {{ log.command|default:log.output|truncatechars:100 }}

Henüz işlem geçmişi bulunmuyor

{% endblock %}