We should probably also make the UI default to having a '1' in the 'how many rooms to create' box on room_form.html, which looks like the value attribute is ignored (according to the angular docs)
Looks like we'd have to do something like change:
$scope.room = {notes: ''};
to:
$scope.room = {notes: '', count=1};
and also remove 'value=1' from the element, which looks like it's being ignored currently
We should probably also make the UI default to having a '1' in the 'how many rooms to create' box on room_form.html, which looks like the
value
attribute is ignored (according to the angular docs)Looks like we'd have to do something like change:
to:
and also remove 'value=1' from the element, which looks like it's being ignored currently