Tagged Questions
1
vote
1answer
29 views
object has no attribute '__getitem__'
I have two model like this:
class School(models.Model):
name = models.CharField(max_length = 50)
def __unicode__(self):
return self.name
class Education(models.Model):
...
0
votes
1answer
22 views
Automatically create a summary of TextField
I am trying to create a summary field of a blog post object. I want the field to prepopulate based on the text entered into the TextField (text) above. For example, if I write a blog post 500 words ...
0
votes
3answers
28 views
The right way to design a job model
I have a silly Job model in my app:
class Job(models.Model):
# working info
user = models.ForeignKey(User)
company = models.CharField(max_length=100, blank=True)
department = ...
2
votes
2answers
43 views
Reusing server-side models in AngularJS
So, I am looking to build something with AngularJS.
Liking what I see so far, but there is something nagging me.
How do I make angular generate forms (and possibly routes) by looking at my model ...
0
votes
1answer
19 views
can't get the objects of foreign keys of django models also my design is probably bad
I've made two django models: Person and Items (here is part of my code):
class Person(models.Model):
""" Represent a person who has credentials. The person may have
devices and/or ...
0
votes
0answers
22 views
django multiple databases add foreign key data
I have a Django project when I need to connect to second database. I followed the official documentation and everything works perfectly until I needed to save the foreign key data.
I set up multiple ...
0
votes
4answers
54 views
Django ManyToMany Field
I need to make a smart menu, for which I need a ManyToMany relation.
My model is:
from django.db import models
class Health_plan(models.Model):
a = models.IntegerField ()
b = ...
0
votes
1answer
34 views
Incorporate third-party module into Django models
I'm creating a product ID conversion app. I have two models representing the two ID styles:
class Id1(models.Model):
number = models.CharField(max_length=10)
converted = ...
0
votes
1answer
33 views
no module found Django model request
My will is to make a select menu with the folowing options:
models.py
TITLE_CHOICES = (
('MR', 'Mr.'),
('MRS', 'Mrs.'),
('MS', 'Ms.'),
)
and display it on hello.html. But I keep getting ...
0
votes
1answer
58 views
Highlight/select first visible item in QListView when filtering with QSortFilterProxyModel
If a list selection does not exist for filtered results then I would like to automatically highlight the first item. I created the method force_selection() that highlight's the first item if nothing ...
1
vote
2answers
28 views
Refer to a model method within method in Django 1.5
I have a model
class ModelName(models.Model):
field = models.CharField(max_length=200)
def field1(self):
return self.field[10:11]
def field2(self):
return self.field1
...
0
votes
2answers
44 views
cant save model instance if I populate decimal field
So this happened to me:
thing = ModelClass()
thing.foo = bar()
thing.do_Stuff()
thing.save() #works fine
thing.decimal_field = decimal_value
thing.save() #error here
Traceback follows:
TypeError ...
0
votes
1answer
34 views
How to preserve variable in django model manager?
In django model manager if multiple methods have the same parameter, do I have to pass them every time I call the method?
class MyManager(model.Manager):
def show(self,request,A,B)
pass
...
-2
votes
1answer
48 views
How do I use python in model builder code block to skip over zeros? [closed]
I'm in ArcGIS 10 Model Builder. I am trying calculate a field using simple division. Field 2 / Field 1. Problem: There are zeros in Field 1. I believe I need to use the Code Block to skip over the ...
1
vote
1answer
53 views
Multiple Choice with fixed options. Dont see the options (Django)
I'm very new to Django and I'm trying to make it so that I could select several choices for a field, but I seem to be having problems with that
Here is simplified version of my model for a site
...
0
votes
1answer
52 views
App Engine and models with relationships with python [closed]
I've read some of the google docs about modeling (btw I'm a newbie with python and GAE/webapp2). Doing this with relationships would be a lot easier but I'm trying to learn google app engines, with ...
0
votes
2answers
41 views
Get entries by values in child model
I have a following model:
class Parent(models.Model):
title = models.CharField(max_length=255)
class Child(models.Models):
title = models.CharField(max_length=255)
parent = ...
1
vote
2answers
71 views
update multiple views on multiple dialogs connected to a single data model
i have Two forms with two views connected to the same dataModel class, but when i change data on one form it does not change on the other.
i am trying to get a comboBox on several different ...
1
vote
0answers
43 views
Model simple business logic [duplicate]
I've created simple model:
class Period(models.Model):
start_date = models.DateField(blank=False)
end_date = models.DateField(blank=False)
def __unicode__(self):
return "Start " + ...
0
votes
1answer
94 views
python pandas OLS.predict, what is the correct signature?
I am having a pandas OLS model,
mid_lag_lead_df_model
-------------------------Summary of Regression Analysis-------------------------
Formula: Y ~ <1> + <2> + <3> +
Number ...
0
votes
0answers
34 views
GAE Python: custom property in model accessing another property
Our datastore replaced old column aaa with new bbb
Actually, old field is not removed and database has both.
And I want new property to be "intelligent" - returning itself when value exists and return ...
0
votes
1answer
46 views
Circular dependency in models with sqlalchemy
I'm creating a webapp which uses SQLAlchemy to access the database. I'm getting stuck with two models which are referencing to each other and ending up in an circular import which throws the following ...
1
vote
0answers
85 views
Django model save issue
I will clear my situation here.
i have some model as:
class Messages(models.Model):
message_idnr = models.BigIntegerField(primary_key=True)
mailbox_idnr = models.ForeignKey(Mailboxes, ...
0
votes
2answers
28 views
django model with IpAddressField throws error in syncdb
I've got a models.py file with following class defined:
from django.db import models
from bands.models import Genre, Song
class Lyric(models.Model):
"""A music lyric"""
class Meta:
...
1
vote
1answer
146 views
How to take data from textboxes in Django without using the automated model forms?
I have a very simple thing I want to do, but for some reason I haven't found the solution yet.
I have a form in HTML
<form id="user_form" method="POST" action="/ProjectName/home/">
{% ...
0
votes
2answers
62 views
Annotate using an extra field from a ManyToMany model in Django
Straight to the point:
models:
class Shop(models.Model):
name = models.CharField(max_length=255)
class Product(models.Model):
name = models.CharField(max_length=255)
shops = ...
0
votes
0answers
25 views
Is there an existing library or example for mapping django response objects to models?
I'm writing a dynamic proxy to be used as a test harness for a number of REST services. It will work by exposing endpoints for each proxied service that match the URI structure of the target, then ...
0
votes
0answers
41 views
Customising django admin with foreignkey sets
l am trying to add a sidebar in the admin change form which contains links to related items, the related items being objects in foreign key sets (e.g. Author.book_set). I can easily create this for ...
0
votes
1answer
62 views
Models and database views in django
I'm setting up django models for a database, and currently my approach is to directly map database tables to Models. However, in some cases I actually need to work with a relatively complicated ...
0
votes
1answer
45 views
Default filter in Django model
Is is possible to set a default filter in Django models?
Something like:
class MyModel(models.Model):
timestamp = models.DateTimeField(default=datetime.utcnow)
active = ...
0
votes
2answers
124 views
django create user method in model
Hi I'm new to django and python. I want to extend django User model and add a create_user method in a model, then I call this create_user method from view. However, I got an error msg.
My model:
...
0
votes
2answers
50 views
Model methods stop working correctly after first call
I have defined two models for retailers and items in their stock. Product is defined in another app. I defined two model methods to get and add stock items. Here is the relevant part of the code:
...
0
votes
2answers
97 views
Django-book tutorial models Chapter 5
I am currently learning Django though the Django-book tutorial and I've come across an error.
On chapter 5 I am supposed to input this in the python interpreter
>>> p1 = ...
1
vote
0answers
66 views
Reading data from a model
I am working on a PyQt application, which has a TreeView, and data is displayed there using a model. Let me present first the code, and describe then the difficulties I have.
class ...
0
votes
1answer
122 views
django create model of unknown table dynamically
I need to create models of existing previously unknown tables. Others have had said to
You can look at inspectdb code, and instead of outputting code return
classes.
but for a python newbie ...
0
votes
2answers
50 views
Query Error when Saving Image ModelForm in Django
I'm trying to make a simple image upload form, which works until I try to save the Model called User_Image using the posted data. The error I get is this: int() argument must be a string or a number, ...
0
votes
4answers
76 views
Python Decorator also for undefined attributes
I'd like to create a Model Class for an User. The data of the user are stored in an document based database like couchdb or mongodb. The class User should have an decorator and the fields ind the db ...
0
votes
1answer
71 views
How to enable a custom group to django admin panel
My question is very simple
I created into the models.py a custom user model (it is called Staff)
I would like to know how could i enable this user model called Staff to use the django admin panel
In ...
0
votes
1answer
55 views
How can a django model field relate to multiple model?
suppose I have three model like this:
class video(models.Model):
name=models.CharField(max_length = 100)
class image(models.Model):
name=models.CharField(max_length = 100)
class ...
2
votes
1answer
37 views
Issues with signals in django
I am using signals to send a mail and is working fine(right now I am testing it and providing the static email address). But I want to use Dynamic values of model fields in my mail function.
e.g. If ...
-1
votes
3answers
197 views
django ImageField not uploading the file
So i've been googling this issue for the past hour and can't come up with a solution. Basically this is it: in my model.py i have a class that has this
class Case(models.Model):
zoomOutImage = ...
0
votes
3answers
96 views
Django model as part of Ajax response
I want to put a Django model in de response for my Ajax request. Currently I have this in my views.py:
def get_account(request, account_id):
try:
account = ...
0
votes
1answer
144 views
Django: Use limit_choices_to to limit choices in Admin menu
I have a model in Django:
class Task(models.Model):
product = models.ForeignKey(Product)
content = models.OneToOneField(ContentDataSet)
How can I use option limit_choices_to= for ...
3
votes
1answer
127 views
Avoid using db.UserProperty() when storing user objects
So... There is the db.UserProperty() model class that stores the Email address
in Unicode order. Why and how does it differ from a unicode string that just stores the
...
2
votes
1answer
59 views
How can i make the text box as choice field in django
I want to display the choice field in forms.
this is my model but i am not able to see the select box. it displays as texarea
SOURCE_CHOICES = Choices(
('var1', '1'),
('var2', '2')
)
...
0
votes
0answers
81 views
Why isn't the data from my PySide model saved to the database?
I got the following app:
# -*- coding: utf8 -*-
import sys
import os
import signal
from PySide import QtGui, QtSql
import phonebook_ui
CURRENT_FILE = os.path.abspath(__file__)
CURRENT_DIR = ...
0
votes
1answer
46 views
Invalid literal for int() in Django model
I am getting an error invalid literal for int() with base 10: sharat and am not sure how to fix it. Any advice?
friend = 'sharat'
user_playlists = Everything.objects.filter(profile = ...
1
vote
1answer
94 views
Why can't I see the data from my model in this Pyside form while I did map them together?
I got a toy phonebook application used to learn PySide:
import sys
import os
from PySide import QtCore, QtGui, QtSql
import phonebook_ui
CURRENT_FILE = os.path.abspath(__file__)
CURRENT_DIR = ...
6
votes
1answer
1k views
Django get list of models in application
So, i have a file models.py in MyApp folder:
from django.db import models
class Model_One(models.Model):
...
class Model_Two(models.Model):
...
...
It can be about 10-15 classes.
How to ...
5
votes
4answers
1k views
ForeignKey to abstract class (generic relations)
I'm building a personal project with Django, to train myself (because I love Django, but I miss skills). I have the basic requirements, I know Python, I carefully read the Django book twice if not ...


