0
votes
2answers
10 views
accepts_nested_attributes_for not generating foreign key
I have a model
class ServiceRequest < ActiveRecord::Base
has_many :services
accepts_nested_attributes_for :services
...
end
and the child
class Service < ActiveRe …
6
votes
3answers
184 views
Creating Models in ASP.NET MVC
I'm just starting a project in ASP.Net MVC with LINQ to Entities and I was wondering if there was a nice, clean way of defining models that creates the appropriate tables in the da …
1
vote
3answers
71 views
Problems with updating records in django-admin
I'm using Django (specifically django-admin) to be the admin panel for a site that uses PHP for client-facing features. I've been messing around making the admin look exactly the w …
0
votes
1answer
29 views
Django / Automatically retrieve models names
Hi,
I'd like to retrieve automatically, in a loop, the names of the models located in a specific Django app inside my project. Does someone know how to do that ?
Best Regards
G …
1
vote
2answers
43 views
Django fetch model objects based on time with interval on the model itself
I'm trying to fetch all expired objects for a model in my Django application.
The model looks like this:
MyModel(models.Model):
owner = models.ForeignKey(User)
last_check …
1
vote
3answers
79 views
Rails Validation for users email - only want it to validate when a user signs up or updates email address.
I have a User model with the usual attributes such as email and hashed_password etc. I want to write a validation that checks for the presence of an email address but only when
1 …
0
votes
1answer
40 views
Zend Models not being found
I'm having a strange problem with Zend. I have an application that works great on localhost, and can access it from outside using my IP address as well. When I move it to our sta …
0
votes
4answers
72 views
Can Django automatically create a related one-to-one model?
I have two models in different apps: modelA and modelB. They have a one-to-one relationship. Is there a way django can automatically create and save ModelB when modelA is saved?
…
2
votes
2answers
50 views
Django 1.1 forms, models and hiding fields
Consider the following Django models:
class Host(models.Model):
# This is the hostname only
name = models.CharField(max_length=255)
class Url(models.Model):
# The com …
0
votes
1answer
72 views
MVC Design Patterns: seperating model and datasource
Obviously MVC promotes separation of concerns.
One thing we are struggling with is proper separation of Model from the datasource, with IDs being the main sticking point.
The int …
0
votes
3answers
86 views
do properties work on django model fields?
I think the best way to ask this question is with some code... can I do this? (edit: ANSWER: no)
class MyModel(models.Model):
foo = models.CharField(max_length = …
0
votes
2answers
45 views
ASP.NET MVC models when using external web services
I'm getting started on a new MVC project where there are some peculiar rules and a little bit of strangeness, and it has me puzzled. Specifically, I have access to a database conta …
0
votes
2answers
63 views
Doctrine ORM: Models not respecting case
I have a mysql database table called UserDegree, when i try to import back to PHP using Doctrine it generates a model name Userdegree, is there a way to solve this?
i really can't …
0
votes
1answer
44 views
Should I normalize the intermediary model in django?
Say I have four pair-wise M2M related models: A, B, C, D. I have created an intermediary model ABCD to establish relationships between them. If there are many duplicate column pair …
0
votes
1answer
83 views
Django: Admin, adding some new filters to a multiple choise field
Hi!
I am building an article site using django.
I've added many to many relation between my articles this way:
class Article (models.Model):
# Tiny url
url = models.CharF …
