diff --git a/docs/docs.org b/docs/docs.org index 985311d..7e94482 100644 --- a/docs/docs.org +++ b/docs/docs.org @@ -357,14 +357,14 @@ We have to import each model we want to use. #+BEGIN_SRC python :tangle ../network_inventory/inventory/admin.py from django.contrib import admin -from inventory.models import (GeneralDevice, HoursInDay, - MinutesInHour, Weekday, DayOfMonth, - Month, RamType, Ram, DiskType, DiskSize, - Disk, Architecture, CpuManufacturer, - Cpu, OperatingSystem, Raid, Computer, - ComputerDiskRelation, - ComputerCpuRelation, - ComputerRamRelation, Warranty, CronJob) +from .models import (GeneralDevice, HoursInDay, + MinutesInHour, Weekday, DayOfMonth, + Month, RamType, Ram, DiskType, DiskSize, + Disk, Architecture, CpuManufacturer, + Cpu, OperatingSystem, Raid, Computer, + ComputerDiskRelation, + ComputerCpuRelation, + ComputerRamRelation, Warranty, CronJob) #+END_SRC ** InLine classes @@ -452,10 +452,10 @@ the templates. #+BEGIN_SRC python :tangle ../network_inventory/inventory/views.py from django.shortcuts import get_object_or_404, render from django.views.generic import ListView -from inventory.models import (GeneralDevice, Computer, CronJob, - ComputerRamRelation, - ComputerDiskRelation, - ComputerCpuRelation) +from .models import (GeneralDevice, Computer, CronJob, + ComputerRamRelation, + ComputerDiskRelation, + ComputerCpuRelation) def device_details(request, device_id):