mirror of
				https://github.com/netbox-community/netbox.git
				synced 2024-05-10 07:54:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| import django_tables2 as tables
 | |
| from django_tables2.utils import Accessor
 | |
| 
 | |
| from utilities.tables import BaseTable, SearchTable, ToggleColumn
 | |
| 
 | |
| from .models import SecretRole, Secret
 | |
| 
 | |
| 
 | |
| SECRETROLE_ACTIONS = """
 | |
| {% if perms.secrets.change_secretrole %}
 | |
|     <a href="{% url 'secrets:secretrole_edit' slug=record.slug %}" class="btn btn-xs btn-warning"><i class="glyphicon glyphicon-pencil" aria-hidden="true"></i></a>
 | |
| {% endif %}
 | |
| """
 | |
| 
 | |
| 
 | |
| #
 | |
| # Secret roles
 | |
| #
 | |
| 
 | |
| class SecretRoleTable(BaseTable):
 | |
|     pk = ToggleColumn()
 | |
|     name = tables.LinkColumn(verbose_name='Name')
 | |
|     secret_count = tables.Column(verbose_name='Secrets')
 | |
|     slug = tables.Column(verbose_name='Slug')
 | |
|     actions = tables.TemplateColumn(template_code=SECRETROLE_ACTIONS, attrs={'td': {'class': 'text-right'}},
 | |
|                                     verbose_name='')
 | |
| 
 | |
|     class Meta(BaseTable.Meta):
 | |
|         model = SecretRole
 | |
|         fields = ('pk', 'name', 'secret_count', 'slug', 'actions')
 | |
| 
 | |
| 
 | |
| #
 | |
| # Secrets
 | |
| #
 | |
| 
 | |
| class SecretTable(BaseTable):
 | |
|     pk = ToggleColumn()
 | |
|     device = tables.LinkColumn()
 | |
| 
 | |
|     class Meta(BaseTable.Meta):
 | |
|         model = Secret
 | |
|         fields = ('pk', 'device', 'role', 'name', 'last_updated')
 | |
| 
 | |
| 
 | |
| class SecretSearchTable(SearchTable):
 | |
| 
 | |
|     class Meta(SearchTable.Meta):
 | |
|         model = Secret
 | |
|         fields = ('device', 'role', 'name', 'last_updated')
 |