Skip to content

Commit

Permalink
fix: bug in cds_other_data_new
Browse files Browse the repository at this point in the history
  • Loading branch information
francesco-filicetti committed Nov 8, 2024
1 parent e637d4c commit 8677032
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cds/management/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ def cds_other_data_new(request, regdid_id, my_offices=None, regdid=None):
if other_data:
raise Exception(_("Other data set already existent for this cds"))

DidatticaCdsAltriDati.objects.create(regdid_id=regdid)
DidatticaCdsAltriDati.objects.create(regdid_id=regdid_id)

log_action(
user=request.user, obj=regdid, flag=CHANGE, msg="Creato nuovo set di dati"
Expand Down

0 comments on commit 8677032

Please sign in to comment.