81 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			81 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "base.html" %}
 | 
						|
<!-- File list-authorities-Authorities.html generated 2018-07-03T23:08:20.023Z by adl.to-selmer-templates.
 | 
						|
See [Application Description Language](https://github.com/simon-brooke/adl).-->
 | 
						|
 | 
						|
 | 
						|
{% block content %}
 | 
						|
<form id='content' class='list'>
 | 
						|
<div class='big-link-container'>
 | 
						|
<a href='form-authorities-Authority'>
 | 
						|
Add a new Authority
 | 
						|
</a>
 | 
						|
</div>
 | 
						|
<table caption='authorities'>
 | 
						|
<thead>
 | 
						|
<tr>
 | 
						|
<th>
 | 
						|
id
 | 
						|
</th>
 | 
						|
<th>
 | 
						|
request-token-uri
 | 
						|
</th>
 | 
						|
<th>
 | 
						|
access-token-uri
 | 
						|
</th>
 | 
						|
<th>
 | 
						|
authorize-uri
 | 
						|
</th>
 | 
						|
</tr>
 | 
						|
<tr>
 | 
						|
<th>
 | 
						|
<input id='id' type='text' name='id' value='{{ params.id }}'/>
 | 
						|
</th>
 | 
						|
<th>
 | 
						|
<input id='request_token_uri' type='text' name='request_token_uri' value='{{ params.request_token_uri }}'/>
 | 
						|
</th>
 | 
						|
<th>
 | 
						|
<input id='access_token_uri' type='text' name='access_token_uri' value='{{ params.access_token_uri }}'/>
 | 
						|
</th>
 | 
						|
<th>
 | 
						|
<input id='authorize_uri' type='text' name='authorize_uri' value='{{ params.authorize_uri }}'/>
 | 
						|
</th>
 | 
						|
<th>
 | 
						|
<input type='submit' id='search' value='Search'/>
 | 
						|
</th>
 | 
						|
</tr>
 | 
						|
</thead>
 | 
						|
<tbody>
 | 
						|
{% for record in records %}
 | 
						|
<tr>
 | 
						|
<td>
 | 
						|
{{ record.id }}
 | 
						|
</td>
 | 
						|
<td>
 | 
						|
{{ record.request_token_uri }}
 | 
						|
</td>
 | 
						|
<td>
 | 
						|
{{ record.access_token_uri }}
 | 
						|
</td>
 | 
						|
<td>
 | 
						|
{{ record.authorize_uri }}
 | 
						|
</td>
 | 
						|
<td>
 | 
						|
<a href='form-authorities-Authority?id={{ record.id }}'>
 | 
						|
View
 | 
						|
</a>
 | 
						|
</td>
 | 
						|
</tr>
 | 
						|
{% endfor %}
 | 
						|
</tbody>
 | 
						|
<tfoot>
 | 
						|
<div class='back-link-container'>
 | 
						|
<input id='page' name='page' disabled='{% ifequal offset 0 %} false {% else %} true {% endifequal %}' value='Previous'/>
 | 
						|
</div>
 | 
						|
<div class='big-link-container'>
 | 
						|
<input id='page' name='page' disabled='false' value='Next'/>
 | 
						|
</div>
 | 
						|
</tfoot>
 | 
						|
</table>
 | 
						|
</form>
 | 
						|
 | 
						|
{% endblock %}
 |