mirror of
				https://github.com/DarkflameUniverse/NexusDashboard.git
				synced 2025-11-04 06:01:53 +00:00 
			
		
		
		
	fix command and activity log confusion
This commit is contained in:
		@@ -71,8 +71,8 @@
 | 
			
		||||
              {% if current_user.is_authenticated and current_user.gm_level >= 8 %}
 | 
			
		||||
                <hr/>
 | 
			
		||||
                <h3 class="text-center">Logs</h3>
 | 
			
		||||
                <a class="dropdown-item text-center" href='{{ url_for('log.activity') }}'>Command Log</a>
 | 
			
		||||
                <a class="dropdown-item text-center" href='{{ url_for('log.command') }}'>Activity Log</a>
 | 
			
		||||
                <a class="dropdown-item text-center" href='{{ url_for('log.command') }}'>Command Log</a>
 | 
			
		||||
                <a class="dropdown-item text-center" href='{{ url_for('log.activity') }}'>Activity Log</a>
 | 
			
		||||
                <a class="dropdown-item text-center" href='{{ url_for('log.audit') }}'>Audit Log</a>
 | 
			
		||||
                <a class="dropdown-item text-center" href='{{ url_for('log.system') }}'>System Log</a>
 | 
			
		||||
              {% endif %}
 | 
			
		||||
 
 | 
			
		||||
@@ -22,7 +22,9 @@
 | 
			
		||||
        <tr>
 | 
			
		||||
            <th>ID</th>
 | 
			
		||||
            <th>Account:Character</th>
 | 
			
		||||
            <th>Command</th>
 | 
			
		||||
            <th>Activity</th>
 | 
			
		||||
            <th>Time</th>
 | 
			
		||||
            <th>Map</th>
 | 
			
		||||
        </tr>
 | 
			
		||||
    </thead>
 | 
			
		||||
    <tbody></tbody>
 | 
			
		||||
@@ -38,7 +40,7 @@
 | 
			
		||||
            "order": [[0, "desc"]],
 | 
			
		||||
            "processing": true,
 | 
			
		||||
            "serverSide": true,
 | 
			
		||||
            "ajax": "{{ url_for('log.get_commands') }}",
 | 
			
		||||
            "ajax": "{{ url_for('log.get_activities') }}",
 | 
			
		||||
          });
 | 
			
		||||
        });
 | 
			
		||||
  </script>
 | 
			
		||||
 
 | 
			
		||||
@@ -22,9 +22,7 @@
 | 
			
		||||
        <tr>
 | 
			
		||||
            <th>ID</th>
 | 
			
		||||
            <th>Account:Character</th>
 | 
			
		||||
            <th>Activity</th>
 | 
			
		||||
            <th>Time</th>
 | 
			
		||||
            <th>Map</th>
 | 
			
		||||
            <th>Command</th>
 | 
			
		||||
        </tr>
 | 
			
		||||
    </thead>
 | 
			
		||||
    <tbody></tbody>
 | 
			
		||||
@@ -40,7 +38,7 @@
 | 
			
		||||
            "order": [[0, "desc"]],
 | 
			
		||||
            "processing": true,
 | 
			
		||||
            "serverSide": true,
 | 
			
		||||
            "ajax": "{{ url_for('log.get_activities') }}",
 | 
			
		||||
            "ajax": "{{ url_for('log.get_commands') }}",
 | 
			
		||||
          });
 | 
			
		||||
        });
 | 
			
		||||
  </script>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user