Create page for bulk adding of image links to source chants #1728
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Adds a new view to update image links on chants in a source based on a csv.
The changes to the
Chant
model made by this view are not captured in theRevision
(i.e. as part of the object history). The fundamental issue is that saving everyChant
in aSource
(a requirement for a version to be saved) takes too long to keep the user waiting. We might eventually use some sort of task management to handle this, but for now, we don't create the revisions.Screenshot of new
add-image-links
page:Or, the same page with a different set of image links:
Closes #940.
Makes updates/additions to some development dependencies.
django-stubs
is updated anddebugpy
(to serve applications on a debug server that can connect to VSCode's debug functionality) is added.