mirror of https://gitlab.federez.net/re2o/re2o
committed by
chirac
8 changed files with 345 additions and 4 deletions
@ -0,0 +1,61 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Generated by Django 1.11.23 on 2019-09-09 14:13 |
|||
from __future__ import unicode_literals |
|||
|
|||
from django.db import migrations, models |
|||
import re2o.mixins |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('preferences', '0061_optionaluser_allow_archived_connexion'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.CreateModel( |
|||
name='RadiusAttribute', |
|||
fields=[ |
|||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), |
|||
('attribute', models.CharField(help_text='See http://freeradius.org/rfc/attributes.html', max_length=255, verbose_name='Attribute')), |
|||
('operator', models.CharField(choices=[('=', '='), (':=', ':='), ('==', '=='), ('+=', '+='), ('!=', '!='), ('>', '>'), ('>=', '>='), ('<', '<'), ('<=', '<='), ('=~', '=~'), ('!~', '!~'), ('=*', '=*'), ('!*', '!*')], default=':=', help_text='See https://wiki.freeradius.org/config/Operators', max_length=2, verbose_name='Operator')), |
|||
('value', models.CharField(max_length=255, verbose_name='Value')), |
|||
('comment', models.TextField(blank=True, default='', help_text='Use this field to document this attribute.', verbose_name='Comment')), |
|||
], |
|||
options={ |
|||
'verbose_name': 'RADIUS attribute', |
|||
'verbose_name_plural': 'RADIUS attributes', |
|||
}, |
|||
bases=(re2o.mixins.RevMixin, re2o.mixins.AclMixin, models.Model), |
|||
), |
|||
migrations.AddField( |
|||
model_name='radiusoption', |
|||
name='banned_attributes', |
|||
field=models.ManyToManyField(blank=True, help_text='Answer attributes for banned users.', related_name='banned_attribute', to='preferences.RadiusAttribute', verbose_name='Banned attributes.'), |
|||
), |
|||
migrations.AddField( |
|||
model_name='radiusoption', |
|||
name='non_member_attributes', |
|||
field=models.ManyToManyField(blank=True, help_text='Answer attributes for non members.', related_name='non_member_attribute', to='preferences.RadiusAttribute', verbose_name='Non member attributes.'), |
|||
), |
|||
migrations.AddField( |
|||
model_name='radiusoption', |
|||
name='ok_attributes', |
|||
field=models.ManyToManyField(blank=True, help_text='Answer attributes for accepted users.', related_name='ok_attribute', to='preferences.RadiusAttribute', verbose_name='Accepted users attributes.'), |
|||
), |
|||
migrations.AddField( |
|||
model_name='radiusoption', |
|||
name='unknown_machine_attributes', |
|||
field=models.ManyToManyField(blank=True, help_text='Answer attributes for unknown machines.', related_name='unknown_machine_attribute', to='preferences.RadiusAttribute', verbose_name='Unknown machines attributes.'), |
|||
), |
|||
migrations.AddField( |
|||
model_name='radiusoption', |
|||
name='unknown_port_attributes', |
|||
field=models.ManyToManyField(blank=True, help_text='Answer attributes for unknown ports.', related_name='unknown_port_attribute', to='preferences.RadiusAttribute', verbose_name='Unknown ports attributes.'), |
|||
), |
|||
migrations.AddField( |
|||
model_name='radiusoption', |
|||
name='unknown_room_attributes', |
|||
field=models.ManyToManyField(blank=True, help_text='Answer attributes for unknown rooms.', related_name='unknown_room_attribute', to='preferences.RadiusAttribute', verbose_name='Unknown rooms attributes.'), |
|||
), |
|||
] |
|||
@ -0,0 +1,50 @@ |
|||
{% 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 Hugo Levy-Falk |
|||
|
|||
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 i18n %} |
|||
{% load acl %} |
|||
{% load logs_extra %} |
|||
|
|||
<table class="table table-striped"> |
|||
<thead> |
|||
<tr> |
|||
<th>{% trans "Attribute" %}</th> |
|||
<th>{% trans "Comment" %}</th> |
|||
<th></th> |
|||
</tr> |
|||
</thead> |
|||
{% for attribute in radius_attributes %} |
|||
<tr> |
|||
<td>{{ attribute }}</td> |
|||
<td>{{ attribute.comment }}</td> |
|||
<td class="text-right"> |
|||
{% can_edit attribute%} |
|||
{% include 'buttons/edit.html' with href='preferences:edit-radiusattribute' id=attribute.id %} |
|||
{% acl_end %} |
|||
{% can_delete attribute %} |
|||
{% include 'buttons/suppr.html' with href='preferences:del-radiusattribute' id=attribute.id %} |
|||
{% acl_end %} |
|||
{% history_button attribute %} |
|||
</td> |
|||
</tr> |
|||
{% endfor %} |
|||
</table> |
|||
|
|||
Loading…
Reference in new issue