mirror of
				https://github.com/DarkflameUniverse/NexusDashboard.git
				synced 2025-10-30 20:11:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			97 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
			
		
		
	
	
			97 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
| {% extends 'base.html.j2' %}
 | |
| 
 | |
| {% block title %}
 | |
|   Moderation of {{ status|capitalize }} Items
 | |
| {% endblock title %}
 | |
| 
 | |
| {% block content_before %}
 | |
|   Moderation of {{ status|capitalize }} Items
 | |
| {% endblock content_before %}
 | |
| 
 | |
| {% block content_override %}
 | |
|   <div class="mx-5">
 | |
|     <h4> Characters </h4>
 | |
|     <hr class="bg-primary"/>
 | |
|     <table class="table table-dark table-striped table-bordered table-hover" id="character_table">
 | |
|       <thead>
 | |
|           <tr>
 | |
|             <th>Actions</th>
 | |
|             <th>Account</th>
 | |
|             <th>Name</th>
 | |
|             <th>Pending Name</th>
 | |
|             <th>Needs Rename</th>
 | |
|             <th>Last Login</th>
 | |
|             <th>Permission Map</th>
 | |
|           </tr>
 | |
|       </thead>
 | |
|       <tbody></tbody>
 | |
|     </table>
 | |
|     <br/>
 | |
|     <h4> Pets </h4>
 | |
|     <hr class="bg-primary"/>
 | |
|     <table class="table table-dark table-striped table-bordered table-hover" id="pet_table">
 | |
|       <thead>
 | |
|           <tr>
 | |
|             <th>Actions</th>
 | |
|             <th>Name</th>
 | |
|             <th>Status</th>
 | |
|             <th>Owner</th>
 | |
|           </tr>
 | |
|       </thead>
 | |
|       <tbody></tbody>
 | |
|     </table>
 | |
|     <br/>
 | |
|     <h4> Properties </h4>
 | |
|     <hr class="bg-primary"/>
 | |
|     <table class="table table-dark table-striped table-bordered table-hover" id="property_table">
 | |
|       <thead>
 | |
|           <tr>
 | |
|             <th>Actions</th>
 | |
|             <th>Owner</th>
 | |
|             <th>Template ID</th>
 | |
|             <th>Clone ID</th>
 | |
|             <th>Name</th>
 | |
|             <th>Description</th>
 | |
|             <th>Privacy</th>
 | |
|             <th>Approved</th>
 | |
|             <th>Updated</th>
 | |
|             <th>Claimed</th>
 | |
|             <th>Rejection Reason</th>
 | |
|             <th>Reputation</th>
 | |
|             <th>Performance Cost</th>
 | |
|             <th>Location</th>
 | |
|           </tr>
 | |
|       </thead>
 | |
|       <tbody></tbody>
 | |
|     </table>
 | |
|   </div>
 | |
| {% endblock %}
 | |
| 
 | |
| {% block js %}
 | |
|   {{ super () }}
 | |
|   <script>
 | |
|     $(document).ready(function(){
 | |
|         let character_table = $('#character_table').DataTable({
 | |
|             "processing": true,
 | |
|             "serverSide": true,
 | |
|             "ajax": "{{ url_for('characters.get', status=status) }}",
 | |
|           });
 | |
|         });
 | |
| 
 | |
|     $(document).ready(function(){
 | |
|         let pet_table = $('#pet_table').DataTable({
 | |
|             "processing": true,
 | |
|             "serverSide": true,
 | |
|             "ajax": "{{ url_for('moderation.get_pets', status=status) }}",
 | |
|           });
 | |
|         });
 | |
|     $(document).ready(function(){
 | |
|         let property_table = $('#property_table').DataTable({
 | |
|             "processing": true,
 | |
|             "serverSide": true,
 | |
|             "ajax": "{{ url_for('properties.get', status=status) }}",
 | |
|           });
 | |
|         });
 | |
|   </script>
 | |
| {% endblock %}
 | 
