Skip to content

Fix messy volumes

Duplicate pages are fixable without re-importing by typing the following in a Django shell :

from arkindex.documents.models import ElementLink, ElementType
ElementLink.objects.filter(parent__type=ElementType.Act, child__type=ElementType.Page).delete()

Merge request reports

Loading