Django - Room model needs to have a selection of many room types. One room must have at least one room type...
One property can have one or many rooms. One room must belong to one property. The question is at the end.
I start by creating the Room Model
class Room(models.Model):
property = models.ForeignKey(Property)
name = models.CharField(max_length=250)
description = models.TextField(max_length=800)
image = models.ImageField(upload_to='room_images/', blank=False)
bar_rate = models.IntegerField(default=0, blank=False)
max_occupancy = models.IntegerField(default=1, blank=False)
extra_beds = models.IntegerField(default=0, blank=True)
price_per_exra_bed = models.IntegerField(default=0, blank=True)
is_breakfast_included = models.BooleanField(default=False)
room_type_quantity = models.IntegerField(default=0, blank=False)
def __str__(self):
return self.name
I create a new form to allow the user to fill out the form. Inside forms.py
class RoomForm(forms.ModelForm):
class Meta:
model = Room
exclude = ("property",)
As you can see above I exclude the property model, I don’t need to add the property info into the RoomForm.
In views.py I have modified the property_add_room function to save the room into the database:
@login_required(login_url='/property/sign-in/')
def property_add_room(request):
form = RoomForm()
if request.method == "POST":
form = RoomForm(request.POST, request.FILES)
if form.is_valid():
room = form.save(commit=False)
room.property = request.user.property
room.save()
return redirect(property_room)
return render(request, 'property/add_room.html', {
"form": form
})
What I would like to do is add the following to the room model, to give the option to the user to select a room type, when adding a room inside the RoomForm. (in the /room/add/ page). Here is what i would like to add to the Room Model, Like this:
ROOM_TYPES = (
('SGL', 'Single'),
('TWN', 'Twin'),
('DBL', 'Double'),
('TRPL', 'Triple'),
('STND', 'Standard'),
('DLX', 'Deluxe'),
('EXET', 'Executive'),
('SPR', 'Superior'),
('JS', 'Junior Suite'),
('ONEBDR', 'One Bedroom'),
('TWOBDR', 'Two Bedroom'),
('THREEBDR', 'Three Bedroom'),
('FOURBDR', 'Four Bedroom'),
('FIVEBDR', 'Five Bedroom'),
('SIXBDR', 'Six Bedroom'),
('SEVENBDR', 'Seven Bedroom'),
)
room_type = models.CharField(max_length=1, choices=ROOM_TYPES, default="STND")
Please help, what am i doing wrong? Is there a better way?
python-3.x django sqlite
New contributor
add a comment |
One property can have one or many rooms. One room must belong to one property. The question is at the end.
I start by creating the Room Model
class Room(models.Model):
property = models.ForeignKey(Property)
name = models.CharField(max_length=250)
description = models.TextField(max_length=800)
image = models.ImageField(upload_to='room_images/', blank=False)
bar_rate = models.IntegerField(default=0, blank=False)
max_occupancy = models.IntegerField(default=1, blank=False)
extra_beds = models.IntegerField(default=0, blank=True)
price_per_exra_bed = models.IntegerField(default=0, blank=True)
is_breakfast_included = models.BooleanField(default=False)
room_type_quantity = models.IntegerField(default=0, blank=False)
def __str__(self):
return self.name
I create a new form to allow the user to fill out the form. Inside forms.py
class RoomForm(forms.ModelForm):
class Meta:
model = Room
exclude = ("property",)
As you can see above I exclude the property model, I don’t need to add the property info into the RoomForm.
In views.py I have modified the property_add_room function to save the room into the database:
@login_required(login_url='/property/sign-in/')
def property_add_room(request):
form = RoomForm()
if request.method == "POST":
form = RoomForm(request.POST, request.FILES)
if form.is_valid():
room = form.save(commit=False)
room.property = request.user.property
room.save()
return redirect(property_room)
return render(request, 'property/add_room.html', {
"form": form
})
What I would like to do is add the following to the room model, to give the option to the user to select a room type, when adding a room inside the RoomForm. (in the /room/add/ page). Here is what i would like to add to the Room Model, Like this:
ROOM_TYPES = (
('SGL', 'Single'),
('TWN', 'Twin'),
('DBL', 'Double'),
('TRPL', 'Triple'),
('STND', 'Standard'),
('DLX', 'Deluxe'),
('EXET', 'Executive'),
('SPR', 'Superior'),
('JS', 'Junior Suite'),
('ONEBDR', 'One Bedroom'),
('TWOBDR', 'Two Bedroom'),
('THREEBDR', 'Three Bedroom'),
('FOURBDR', 'Four Bedroom'),
('FIVEBDR', 'Five Bedroom'),
('SIXBDR', 'Six Bedroom'),
('SEVENBDR', 'Seven Bedroom'),
)
room_type = models.CharField(max_length=1, choices=ROOM_TYPES, default="STND")
Please help, what am i doing wrong? Is there a better way?
python-3.x django sqlite
New contributor
Your code is incorrectly indented and won't run as-is. Please fix this.
– Reinderien
1 hour ago
Hey Reinderien, thanks for your help. Is the indentation better now?
– Sam Terano
9 mins ago
Are you asking us to add new functionality to your code, or just to improve the quality of your existing code? If you're asking for new functionality, this isn't the place; Stack Overflow is better suited for those types of questions.
– Graham
33 secs ago
add a comment |
One property can have one or many rooms. One room must belong to one property. The question is at the end.
I start by creating the Room Model
class Room(models.Model):
property = models.ForeignKey(Property)
name = models.CharField(max_length=250)
description = models.TextField(max_length=800)
image = models.ImageField(upload_to='room_images/', blank=False)
bar_rate = models.IntegerField(default=0, blank=False)
max_occupancy = models.IntegerField(default=1, blank=False)
extra_beds = models.IntegerField(default=0, blank=True)
price_per_exra_bed = models.IntegerField(default=0, blank=True)
is_breakfast_included = models.BooleanField(default=False)
room_type_quantity = models.IntegerField(default=0, blank=False)
def __str__(self):
return self.name
I create a new form to allow the user to fill out the form. Inside forms.py
class RoomForm(forms.ModelForm):
class Meta:
model = Room
exclude = ("property",)
As you can see above I exclude the property model, I don’t need to add the property info into the RoomForm.
In views.py I have modified the property_add_room function to save the room into the database:
@login_required(login_url='/property/sign-in/')
def property_add_room(request):
form = RoomForm()
if request.method == "POST":
form = RoomForm(request.POST, request.FILES)
if form.is_valid():
room = form.save(commit=False)
room.property = request.user.property
room.save()
return redirect(property_room)
return render(request, 'property/add_room.html', {
"form": form
})
What I would like to do is add the following to the room model, to give the option to the user to select a room type, when adding a room inside the RoomForm. (in the /room/add/ page). Here is what i would like to add to the Room Model, Like this:
ROOM_TYPES = (
('SGL', 'Single'),
('TWN', 'Twin'),
('DBL', 'Double'),
('TRPL', 'Triple'),
('STND', 'Standard'),
('DLX', 'Deluxe'),
('EXET', 'Executive'),
('SPR', 'Superior'),
('JS', 'Junior Suite'),
('ONEBDR', 'One Bedroom'),
('TWOBDR', 'Two Bedroom'),
('THREEBDR', 'Three Bedroom'),
('FOURBDR', 'Four Bedroom'),
('FIVEBDR', 'Five Bedroom'),
('SIXBDR', 'Six Bedroom'),
('SEVENBDR', 'Seven Bedroom'),
)
room_type = models.CharField(max_length=1, choices=ROOM_TYPES, default="STND")
Please help, what am i doing wrong? Is there a better way?
python-3.x django sqlite
New contributor
One property can have one or many rooms. One room must belong to one property. The question is at the end.
I start by creating the Room Model
class Room(models.Model):
property = models.ForeignKey(Property)
name = models.CharField(max_length=250)
description = models.TextField(max_length=800)
image = models.ImageField(upload_to='room_images/', blank=False)
bar_rate = models.IntegerField(default=0, blank=False)
max_occupancy = models.IntegerField(default=1, blank=False)
extra_beds = models.IntegerField(default=0, blank=True)
price_per_exra_bed = models.IntegerField(default=0, blank=True)
is_breakfast_included = models.BooleanField(default=False)
room_type_quantity = models.IntegerField(default=0, blank=False)
def __str__(self):
return self.name
I create a new form to allow the user to fill out the form. Inside forms.py
class RoomForm(forms.ModelForm):
class Meta:
model = Room
exclude = ("property",)
As you can see above I exclude the property model, I don’t need to add the property info into the RoomForm.
In views.py I have modified the property_add_room function to save the room into the database:
@login_required(login_url='/property/sign-in/')
def property_add_room(request):
form = RoomForm()
if request.method == "POST":
form = RoomForm(request.POST, request.FILES)
if form.is_valid():
room = form.save(commit=False)
room.property = request.user.property
room.save()
return redirect(property_room)
return render(request, 'property/add_room.html', {
"form": form
})
What I would like to do is add the following to the room model, to give the option to the user to select a room type, when adding a room inside the RoomForm. (in the /room/add/ page). Here is what i would like to add to the Room Model, Like this:
ROOM_TYPES = (
('SGL', 'Single'),
('TWN', 'Twin'),
('DBL', 'Double'),
('TRPL', 'Triple'),
('STND', 'Standard'),
('DLX', 'Deluxe'),
('EXET', 'Executive'),
('SPR', 'Superior'),
('JS', 'Junior Suite'),
('ONEBDR', 'One Bedroom'),
('TWOBDR', 'Two Bedroom'),
('THREEBDR', 'Three Bedroom'),
('FOURBDR', 'Four Bedroom'),
('FIVEBDR', 'Five Bedroom'),
('SIXBDR', 'Six Bedroom'),
('SEVENBDR', 'Seven Bedroom'),
)
room_type = models.CharField(max_length=1, choices=ROOM_TYPES, default="STND")
Please help, what am i doing wrong? Is there a better way?
python-3.x django sqlite
python-3.x django sqlite
New contributor
New contributor
edited 2 mins ago
New contributor
asked 2 hours ago
Sam Terano
11
11
New contributor
New contributor
Your code is incorrectly indented and won't run as-is. Please fix this.
– Reinderien
1 hour ago
Hey Reinderien, thanks for your help. Is the indentation better now?
– Sam Terano
9 mins ago
Are you asking us to add new functionality to your code, or just to improve the quality of your existing code? If you're asking for new functionality, this isn't the place; Stack Overflow is better suited for those types of questions.
– Graham
33 secs ago
add a comment |
Your code is incorrectly indented and won't run as-is. Please fix this.
– Reinderien
1 hour ago
Hey Reinderien, thanks for your help. Is the indentation better now?
– Sam Terano
9 mins ago
Are you asking us to add new functionality to your code, or just to improve the quality of your existing code? If you're asking for new functionality, this isn't the place; Stack Overflow is better suited for those types of questions.
– Graham
33 secs ago
Your code is incorrectly indented and won't run as-is. Please fix this.
– Reinderien
1 hour ago
Your code is incorrectly indented and won't run as-is. Please fix this.
– Reinderien
1 hour ago
Hey Reinderien, thanks for your help. Is the indentation better now?
– Sam Terano
9 mins ago
Hey Reinderien, thanks for your help. Is the indentation better now?
– Sam Terano
9 mins ago
Are you asking us to add new functionality to your code, or just to improve the quality of your existing code? If you're asking for new functionality, this isn't the place; Stack Overflow is better suited for those types of questions.
– Graham
33 secs ago
Are you asking us to add new functionality to your code, or just to improve the quality of your existing code? If you're asking for new functionality, this isn't the place; Stack Overflow is better suited for those types of questions.
– Graham
33 secs ago
add a comment |
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["\$", "\$"]]);
});
});
}, "mathjax-editing");
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "196"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sam Terano is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f210136%2fdjango-room-model-needs-to-have-a-selection-of-many-room-types-one-room-must%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sam Terano is a new contributor. Be nice, and check out our Code of Conduct.
Sam Terano is a new contributor. Be nice, and check out our Code of Conduct.
Sam Terano is a new contributor. Be nice, and check out our Code of Conduct.
Sam Terano is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Code Review Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f210136%2fdjango-room-model-needs-to-have-a-selection-of-many-room-types-one-room-must%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Your code is incorrectly indented and won't run as-is. Please fix this.
– Reinderien
1 hour ago
Hey Reinderien, thanks for your help. Is the indentation better now?
– Sam Terano
9 mins ago
Are you asking us to add new functionality to your code, or just to improve the quality of your existing code? If you're asking for new functionality, this isn't the place; Stack Overflow is better suited for those types of questions.
– Graham
33 secs ago