0
votes
2answers
5 views

Django send mail from admin panel

I want to sent email to user's from django admin panel and store the sent mail in database too.I have two usertypes 1.Staff 2. Students. When I select staff and give email, it'll sent email to all the ...
0
votes
1answer
17 views

Model linking to other models based on field values

I'm working on simple ratings and comments apps to add to my project and am looking for advice on creating the models. Normally, I'd create these database schemas like this: comment_ id - ...
0
votes
0answers
29 views

Django admin issues with empty translated values and unique=True

I'm trying to use django-modeltranslation but I can't get it working well. I'm suffering because Django admin crashes with empty translated values and unique=True. This appears as a closed issue, but ...
0
votes
0answers
34 views

export items from database in .csv format Django

views.py @login_required def export_csv(request): user = request.user # heading columns headerrow = ['Filename', 'Description','Notes other','Reporter Name'] allrows = [] today = ...
0
votes
0answers
23 views

django admin and inlines

I am having a weird behaviour when I add a booleanfield to a through memebership which is included as an inline into the main model. Once saved, it randomly shows the field as True/False. No matter ...
0
votes
1answer
16 views

post_save signal and relations

I am applying the post_save signal to apply user rights per object, and then filter the queryset accordingly. My model is like this: class Project(models.Model): # Relations with other entities. ...
1
vote
0answers
19 views

django rest nested relation in post/put

I am new in django rest api developement. I have two models one is category and another is subcategories. Here is my models class Category(models.Model): title = models.Charfield() ...
0
votes
2answers
22 views

Behavior of querysets with foreign keys in Django

When a model object is an aggregate of many other objects, whether via Foreign Key or Many To Many, does iterating over the queryset of that object result in individual queries to the related objects? ...
0
votes
1answer
29 views

Django run models.py from command line

I was wondering how one can exercise the models outside the Django manage.py control. i.e. given the following combination of the tutorial parts how would I be able to just python models.py. # ...
0
votes
0answers
23 views

format change before save date field

views.py def when(request): """""""" if not report.manual_date: report.manual_date = datetime.datetime.now() if int(dateformat): date = ...
-1
votes
0answers
21 views

How to save date of different input format in single format

I am using two different input date format namely,['%d/%m/%Y','%m/%d/%Y'],I want to save both date format in single in database.Whatever date user enters should be saved in ['%d/%m/%Y'] format.I am ...
0
votes
2answers
36 views

OneToMany queries in Django

I'm having some trouble working out the best way to do queries with one to many relationships in Django. Best explained by an example: class Item(models.Model): name = ...
0
votes
1answer
27 views

Can I use the Django ORM to join on a non-id field (like a CharField)?

I'd like to do the following query in the Django ORM: SELECT * FROM table JOIN othertable on table.nonidfield = othertable.nonidfield; Is it possible using the Django ORM to join two tables on a ...
0
votes
1answer
18 views

Implement Django aggregate object that is not mapped to database

I have a model query function written in a test as contracts = Contracts.objects.all() contractPlans = ContractPlans.objects.filter(contractnum__in = contracts) parentorgs = Parentorgs.objects.all() ...
0
votes
1answer
22 views

Odd values_list and filter behavior in Django

I'm trying to reduce the number of queries on the database in a Django app. Rather than using three nested loops to execute quite a number of database queries, I'd like to use the method that was ...
0
votes
1answer
31 views

Django filter() on field of related model

I think I'm missing something very basic and fundamental about how Django's filter() method is supposed to work. Using the following models: class Collection(models.Model): pass class ...
0
votes
1answer
20 views

Resolving TypeError when comparing unicode strings in conditional

I have two classes that are connected by a FK constraint in the model. After executing a query, I'm packing a list of the return objects in the QuerySet where the related object's field matches the ...
0
votes
1answer
23 views

get_or_create with ManyToManyField

I have a model class Conversation(models.Model): users = models.ManyToManyField(User) In a form I need to check if a conversation with exactly these users exists. I've tried ...
0
votes
1answer
20 views

How to inherit mongoengine.django.auth.User for Custom User Model?

I am pretty new with django. I am using django, mongoengine, django-social-auth to build authentication system and to store user profile in mongodb. I am in process of using 'Custom User Model' ...
0
votes
3answers
65 views
+100

data format value changes in database

views.py def when(request): """""""" if not report.manual_date: report.manual_date = datetime.datetime.now() if int(dateformat): date = ...
0
votes
1answer
15 views

Revoking user permissions but maintaining groups in Django

I know that Users can have their own permissions and permissions inherited from their groups. I want to be able to remove a permission from a User that was granted to them by their group, but maintain ...
0
votes
1answer
19 views

Django - Is ManyToManyField required to use over ForeignKey?

I've inherited a legacy database and am using it for a Django app. Many of the internal tables have one to one, one to many and many to many relationships. In a straight SQL app, the data queries ...
0
votes
2answers
31 views

Django Forum App Project Structure

EDIT: I'm new to this site but if you are going to down vote me, could you perhaps explain why? I've searched Google, this site and others but have not found anything that makes any sense and I ...
0
votes
1answer
12 views

Not able to show the selected form choice in template

forms.py PERSON_ACTIONS = ( ('1', '01.Allowed to rest and returned to class'), ('2', '02.Contacted parents /guardians'), ('3', '02a.- Unable to Contact'), ('4', '02b.Unavailable - ...
0
votes
1answer
16 views

Create an instance of a Django model with a FileField

How do I create an instance of a Django model with a FileField? For example, given a simple model from django.db import models class FileModel(models.Model): model_file = ...
0
votes
0answers
15 views

Django - Many to many model relationship and unique constraints

I have a legacy database that is going to be the base of a Django app. Currently, I'm in the process of defining the models and enforcing referential integrity through models.ForeignKey() ...
2
votes
1answer
16 views

Checking if an item is contained in a ManyToManyField (django)

So I have a ManyToManyField relationship between Item1 and Item2. On a webpage, I want to display one of two messages based on whether the two items are connected or not. I'm just not sure how to ...
0
votes
0answers
17 views

Multiple Abstract Classes creating clashes

I have two abstract base classes that create clashes: class DateModel(models.Model): created_by = models.ForeignKey(User, null=True, ...
1
vote
1answer
21 views

Display forms choice in template-Django

On the template, when I call person.health_issue, I am getting '1','2' instead of 'Abdominal pain','Anaphylaxis'. How to display the value ('Abdominal pain','Anaphylaxis') instead of the code(1 or2 ...
0
votes
1answer
13 views

TastyPie resources

I have two resources: UserResource and ChannelResource, as follows: class ChannelResource(ModelResource): class Meta: queryset = Channel.objects.all() resource_name = 'channels' ...
0
votes
1answer
18 views

How order the element in the case I pass them whit “get_object_or_404” from views

I want to order "film" of "regista" ( {% for film in regista.film_set.all %} ) and "sequel" ( {% for sequel in film.sequels.all %} ) by "anno", but I don't know how I have to do....Thanks fo ...
0
votes
1answer
26 views

show form data in template

In my application,i am keeping some choices in forms.The choices are check box input and user can click and save the choices.In database saved choice are stored as integer like 1,2,3.How to query the ...
0
votes
1answer
15 views

How getting ManyToManyField(“self”) in the template?

I don't figure out how getting the value of sequels in the template. here models.py class Anno( models.Model ): anno = models.CharField( max_length=4 ) def __unicode__(self): return ...
0
votes
0answers
19 views

django-hvad and django-model-utils comdined?

I'm stuck a little bit with choosing django packages, that'll simplify the developing process for me: currently I'm using django-model-utils in order to get inheritance managers and stuff. Now I'm ...
0
votes
1answer
9 views

Django broken OneToOneField

I have an app running and I made a huge mistake, I've deleted a user from the admin site of my Django app before deleting it's UserProfile. Now, when I try to see the UserProfiles from the admin ...
0
votes
1answer
18 views

Sum two query set in django

I have two models, Quote and Post. I want two send this to my template: posts = Post.objects.order_by("-submitted_time") quotes = Quote.objects.order_by("-submitted_time") thing = posts + quotes ...
1
vote
2answers
24 views

How to pass one-to-many relationship to context on objects.all() lookup as iterable

I'm having trouble trying to wrap my head around this. many-to-one relationships are well documented, but I can't find an example on how to pass all of the relationships of a model.objects.all() ...
1
vote
1answer
15 views

Reduce the number of Django database calls for a ForeignKey?

I have a query on some Django models with a ForeignKey, and I've noticed that it means there are multiple database calls, that perhaps should not be necessary. This are my models: class ...
0
votes
0answers
25 views

Django models query parent objects issue

I have a question regarding models in Django. I will explain how my models are structured. I have a model called AppUserGroup that is a group of users. This contains multiple users who I have called ...
0
votes
1answer
25 views

set minimum primary key for saving django models in database

I am new to Django.I have two models, Model A and a new Model B class A: firstname=models.CharField(max_length=20,blank=True,null=True) email = ...
2
votes
2answers
37 views

Django ecommerce website huge product page intial load time (wait)

I'm just a starter in everything Django related so I apologize upfront for my confusing explanations. I've been trying to resolve some page load issues on a Django based website with an attached ...
0
votes
2answers
22 views

Copying Django model row data before updating

Before updating a row, I'd like to save its current results into another table. Currently I am using pre_save but it does not seem to work as intended. It gives me updated data, not pre-updated data. ...
1
vote
0answers
15 views

Django Models and Testing: Failed to install custom SQL

I have the following model: from django.db import models from django.forms import ModelForm from vehicle.models import Vehicle from account.models import Wheelster class Ride(models.Model): ...
0
votes
1answer
22 views

Attempting to create a connection between two models in Django

I have two models, Event and Profile. class Event(models.Model): def __unicode__(self): return self.title event_id = models.BigIntegerField(blank = 'TRUE', primary_key='TRUE') ...
0
votes
1answer
17 views

Not able to send email to more than 2 email address

models.py class FollowerEmail(models.Model): report = models.ForeignKey(Report) email = models.CharField('Email', max_length=100) views.py def what(request): """""" follower = ...
0
votes
1answer
24 views

send email to multiple email address

views.py follower = FollowerEmail.objects.filter(user=report_id) list=[] for email in follower: list.append(email.email) '''''' '''''' if 'email' in request.POST: ...
0
votes
2answers
43 views

How to Dynamically Access Fields from Foreign Key in Django Admin

So I have models like this: class Celebrity(models.Model): #30+ fields here ... class HoneyBadger(models.Model): name = models.CharField(max_length=10) celebrity_owner = ...
0
votes
1answer
13 views

Django Model: creating a new object on save for FK

In my Django Model I have the following FK on a class called Batch. class Batch(models.Model): sender_name = models.ForeignKey(Originator, ...
0
votes
1answer
35 views

Django ManyToMany relationship to queryset to pagination?

Here is the relevant code: models.py class Blog(models.Model): ... images = models.ManyToManyField('myapp.Image') class Image(models.Model): ... title = ...
0
votes
1answer
16 views

send email to bcc and cc in django

views.py if 'send_email' in request.POST: subject, from_email, to = 'Parent Incident Notification',user.email, person.parent_email html_content = ...

1 2 3 4 5 126