mirror of https://gitlab.federez.net/re2o/re2o
committed by
Maël Kervella
9 changed files with 16 additions and 271 deletions
@ -1,46 +0,0 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.10.7 on 2018-06-23 14:51 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
import django.db.models.deletion |
|||
import re2o.mixins |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('machines', '0083_remove_duplicate_rights'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.CreateModel( |
|||
name='SshFprAlgo', |
|||
fields=[ |
|||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), |
|||
('name', models.CharField(max_length=256)), |
|||
], |
|||
options={ |
|||
'permissions': (('view_sshfpralgo', 'Can see an SSH fingerprint algorithm'),), |
|||
'verbose_name': 'SSH fingerprint algorithm', |
|||
'verbose_name_plural': 'SSH fingerprint algorithms' |
|||
}, |
|||
bases=(re2o.mixins.RevMixin, re2o.mixins.AclMixin, models.Model), |
|||
), |
|||
migrations.CreateModel( |
|||
name='SshFingerprint', |
|||
fields=[ |
|||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), |
|||
('pub_key_entry', models.TextField(help_text='SSH public key', max_length=2048)), |
|||
('comment', models.CharField(blank=True, help_text='Comment', max_length=255, null=True)), |
|||
('algo', models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, to='machines.SshFprAlgo')), |
|||
('machine', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='machines.Machine')), |
|||
], |
|||
options={ |
|||
'permissions': (('view_sshfingerprint', 'Can see an SSH fingerprint'),), |
|||
'verbose_name': 'SSH fingerprint', |
|||
'verbose_name_plural': 'SSH fingerprints' |
|||
}, |
|||
bases=(re2o.mixins.RevMixin, re2o.mixins.AclMixin, models.Model), |
|||
), |
|||
] |
|||
@ -1,47 +0,0 @@ |
|||
{% comment %} |
|||
Re2o est un logiciel d'administration développé initiallement au rezometz. Il |
|||
se veut agnostique au réseau considéré, de manière à être installable en |
|||
quelques clics. |
|||
|
|||
Copyright © 2018 Gabriel Détraz |
|||
|
|||
This program is free software; you can redistribute it and/or modify |
|||
it under the terms of the GNU General Public License as published by |
|||
the Free Software Foundation; either version 2 of the License, or |
|||
(at your option) any later version. |
|||
|
|||
This program is distributed in the hope that it will be useful, |
|||
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
GNU General Public License for more details. |
|||
|
|||
You should have received a copy of the GNU General Public License along |
|||
with this program; if not, write to the Free Software Foundation, Inc., |
|||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
|||
{% endcomment %} |
|||
|
|||
{% load acl %} |
|||
{% load logs_extra %} |
|||
|
|||
<table class="table table-striped"> |
|||
<thead> |
|||
<tr> |
|||
<th>Algorithm name</th> |
|||
<th></th> |
|||
</tr> |
|||
</thead> |
|||
{% for sshfpralgo in sshfpralgo_list %} |
|||
<tr> |
|||
<td>{{ sshfpralgo.name }}</td> |
|||
<td class="text-right"> |
|||
{% can_edit sshfpralgo %} |
|||
{% include 'buttons/edit.html' with href='machines:edit-sshfpralgo' id=sshfpralgo.id %} |
|||
{% acl_end %} |
|||
{% can_delete sshfpralgo %} |
|||
{% include 'buttons/suppr.html' with href='machines:del-sshfpralgo' id=sshfpralgo.id %} |
|||
{% acl_end %} |
|||
{% history_button sshfpralgo %} |
|||
</td> |
|||
</tr> |
|||
{% endfor %} |
|||
</table> |
|||
@ -1,38 +0,0 @@ |
|||
{% extends "machines/sidebar.html" %} |
|||
{% comment %} |
|||
Re2o est un logiciel d'administration développé initiallement au rezometz. Il |
|||
se veut agnostique au réseau considéré, de manière à être installable en |
|||
quelques clics. |
|||
|
|||
Copyright © 2018 Gabriel Détraz |
|||
|
|||
This program is free software; you can redistribute it and/or modify |
|||
it under the terms of the GNU General Public License as published by |
|||
the Free Software Foundation; either version 2 of the License, or |
|||
(at your option) any later version. |
|||
|
|||
This program is distributed in the hope that it will be useful, |
|||
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
GNU General Public License for more details. |
|||
|
|||
You should have received a copy of the GNU General Public License along |
|||
with this program; if not, write to the Free Software Foundation, Inc., |
|||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
|||
{% endcomment %} |
|||
|
|||
{% load bootstrap3 %} |
|||
{% load acl %} |
|||
|
|||
{% block title %}Machines{% endblock %} |
|||
|
|||
{% block content %} |
|||
<h2>SSH fingerprint algorithms</h2> |
|||
{% can_create SshFprAlgo %} |
|||
<a class="btn btn-primary btn-sm" role="button" href="{% url 'machines:new-sshfpralgo' %}"> |
|||
<i class="fa fa-plus"></i> Add an SSH fingerprint algorithm |
|||
</a> |
|||
{% acl_end %} |
|||
{% include "machines/aff_sshfpralgo.html" with sshfpralgo_list=sshfpralgo_list %} |
|||
{% endblock %} |
|||
|
|||
Loading…
Reference in new issue