description

This commit is contained in:
Egor Matveev
2022-01-22 12:04:30 +03:00
parent 2ecc839ec5
commit cabbace972
5 changed files with 38 additions and 2 deletions

View File

@@ -44,6 +44,7 @@ class SetSettingsView(BaseView):
st.name = value
st.save()
self.current_set.name = self.request.POST["name"]
self.current_set.description = self.request.POST['description']
self.current_set.save()
return "/admin/set?set_id=" + str(self.current_set.id)