Add more information to client_list route
This commit is contained in:
		@@ -1,12 +1,13 @@
 | 
			
		||||
{% extends "base_settings_page.html" %}
 | 
			
		||||
{% block content %}
 | 
			
		||||
 | 
			
		||||
<table class="table table-hover" style="max-width: 600px;" aria-describedby="Clients list">
 | 
			
		||||
<table class="table table-hover" style="max-width: 800px;" aria-describedby="Clients list">
 | 
			
		||||
    <thead>
 | 
			
		||||
    <tr>
 | 
			
		||||
        <th scope="col">ID</th>
 | 
			
		||||
        <th scope="col">Name</th>
 | 
			
		||||
        <th scope="col">Description</th>
 | 
			
		||||
        <th scope="col">Redirect URI</th>
 | 
			
		||||
    </tr>
 | 
			
		||||
    </thead>
 | 
			
		||||
    <tbody>
 | 
			
		||||
@@ -15,6 +16,7 @@
 | 
			
		||||
        <td>{{ c.id.0 }}</td>
 | 
			
		||||
        <td>{{ c.name }}</td>
 | 
			
		||||
        <td>{{ c.description }}</td>
 | 
			
		||||
        <td>{{ c.redirect_uri }}</td>
 | 
			
		||||
    </tr>
 | 
			
		||||
    {% endfor %}
 | 
			
		||||
    </tbody>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user