Browse Source

Stockage du firmware dans la bdd

design-preferences
Gabriel Detraz 8 years ago
parent
commit
33e1d1fa6b
  1. 2
      api/serializers.py
  2. 20
      topologie/migrations/0068_modelswitch_firmware.py
  3. 5
      topologie/models.py
  4. 4
      topologie/templates/topologie/aff_model_switch.html

2
api/serializers.py

@ -691,7 +691,7 @@ class ProfilSerializer(NamespacedHMSerializer):
class ModelSwitchSerializer(NamespacedHMSerializer): class ModelSwitchSerializer(NamespacedHMSerializer):
class Meta: class Meta:
model = topologie.ModelSwitch model = topologie.ModelSwitch
fields = ('reference',) fields = ('reference', 'firmware')
class SwitchBaySerializer(NamespacedHMSerializer): class SwitchBaySerializer(NamespacedHMSerializer):

20
topologie/migrations/0068_modelswitch_firmware.py

@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.7 on 2018-07-08 19:56
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('topologie', '0067_auto_20180701_0016'),
]
operations = [
migrations.AddField(
model_name='modelswitch',
name='firmware',
field=models.CharField(blank=True, max_length=255, null=True),
),
]

5
topologie/models.py

@ -299,6 +299,11 @@ class ModelSwitch(AclMixin, RevMixin, models.Model):
'topologie.ConstructorSwitch', 'topologie.ConstructorSwitch',
on_delete=models.PROTECT on_delete=models.PROTECT
) )
firmware = models.CharField(
max_length=255,
null=True,
blank=True
)
class Meta: class Meta:
permissions = ( permissions = (

4
topologie/templates/topologie/aff_model_switch.html

@ -32,13 +32,15 @@ with this program; if not, write to the Free Software Foundation, Inc.,
<thead> <thead>
<tr> <tr>
<th>{% include "buttons/sort.html" with prefix='model-switch' col='reference' text='Référence' %}</th> <th>{% include "buttons/sort.html" with prefix='model-switch' col='reference' text='Référence' %}</th>
<th>{% include "buttons/sort.html" with prefix='model-switch' col='constructor' text='Constructeur' %}</th> <th>Firmware</th>
<th>{% include "buttons/sort.html" with prefix='model-switch' col='constructor' text='Constructeur' %}</th>
<th></th> <th></th>
</tr> </tr>
</thead> </thead>
{% for model_switch in model_switch_list %} {% for model_switch in model_switch_list %}
<tr> <tr>
<td>{{model_switch.reference}}</td> <td>{{model_switch.reference}}</td>
<td>{{model_switch.firmware}}</td>
<td>{{model_switch.constructor}}</td> <td>{{model_switch.constructor}}</td>
<td class="text-right"> <td class="text-right">
<a class="btn btn-info btn-sm" role="button" title="Historique" href="{% url 'topologie:history' 'modelswitch' model_switch.pk %}"> <a class="btn btn-info btn-sm" role="button" title="Historique" href="{% url 'topologie:history' 'modelswitch' model_switch.pk %}">

Loading…
Cancel
Save