FAQ

Search Discussions

161 discussions - 713 posts

  • Hi everyone, We're incredibly proud to share with you the new design of the Django website, the documentation and the issue tracker. This is a long time coming and we couldn't be happier to finally ...
    Jannis LeidelJannis Leidel
    Dec 16, 2014 at 4:09 pm
    Dec 18, 2014 at 4:36 pm
  • Hello, I am getting this error: Error: 'NoneType' object has no attribute 'strip' I have created a model and I am trying to autofill slug field in it. When I save the record in database I get this ...
    Danish AliDanish Ali
    Dec 1, 2014 at 12:25 pm
    Dec 9, 2014 at 1:19 pm
  • Good day, Community, I'm looking for advise on MySQL & MongoDB usage so please let me take your time to describe the situation. I came to work on e-commerce shop of electrical components with about ...
    ArtieArtie
    Dec 5, 2014 at 12:57 pm
    Dec 16, 2014 at 12:23 pm
  • Hi, I'm having trouble with changes to my Models. I just added a couple of new fields to my existing models but when I run manage makemigrations it says: No changes detected. When I try to log in to ...
    Tobias DacoirTobias Dacoir
    Dec 8, 2014 at 7:23 am
    Dec 10, 2014 at 1:38 pm
  • Hi all, We went live with a new website, completely rewritten in python 3 and with django 1.6 (upgrade to 1.7 is in progress) on November the 18th. Of course there were some minor issues, but most of ...
    Andreas KuhneAndreas Kuhne
    Dec 4, 2014 at 6:49 pm
    Dec 5, 2014 at 4:43 pm
  • With django what benefit do I get for the extra build time over Drupal or Rails. Configuration I assume but real world benefits not my/our joy of configuration. Why hasn't a cms been designed off ...
    Sayth RenshawSayth Renshaw
    Dec 16, 2014 at 9:16 pm
    Dec 18, 2014 at 4:31 am
  • Hi list, I'm using Django as a hub to synchronize data between various external systems. To do this, I have some long-running Django management commands that are started as cron jobs. To ensure that ...
    Erik CederstrandErik Cederstrand
    Dec 18, 2014 at 11:20 am
    Dec 23, 2014 at 4:01 pm
  • Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/2.7/bin/django-admin.py", line 5, in <module management.execute_from_command_line() File ...
    Shashwat singhShashwat singh
    Dec 2, 2014 at 10:33 am
    Dec 6, 2014 at 5:29 pm
  • Hi, Is there a way to make a model that links several db tables in one model, so that can be used in a change list view ? Most importantly, I need to be able to use the search field, can this be ...
    Damjan DimitrioskiDamjan Dimitrioski
    Dec 12, 2014 at 3:20 pm
    Dec 16, 2014 at 1:03 pm
  • Hey everyone, I'm just curious if anyone around the community has an interest in discussing the possibility of adding a "MultiEmailField" to Django? Here is what I found when roaming the internet ...
    JJ ZolperJJ Zolper
    Dec 2, 2014 at 12:58 am
    Dec 2, 2014 at 4:30 am
  • Hi List, I;m a data maangement specialist in a rather large multinational. I'm trying to push Django as a fast development framework for front-end applications of our databases. Currently the company ...
    Joris BenschopJoris Benschop
    Dec 29, 2014 at 2:56 pm
    Dec 30, 2014 at 3:43 pm
  • Hello everybody. I am very new to django and I come from a wordpress background (yes, yes I know) and I really like their wp_*meta model. After a little digging I discovered this is called the ...
    Felipe FaraggiFelipe Faraggi
    Dec 15, 2014 at 1:45 pm
    Dec 26, 2014 at 8:35 pm
  • I am trying to run a site on Django development server but my css don't load. When I open dev tools in Chrome I see in network that css is loaded as text/plain and not as text/css.My link is ...
    Jovana AndjelkovicJovana Andjelkovic
    Dec 15, 2014 at 2:35 am
    Dec 16, 2014 at 4:30 pm
  • The official django doc uses this as an example (see below). Is there any point to storing 'FR' instead of 'Freshman" so the choice matches what is stored? Is it faster at all? Saves room? What about ...
    Radomir WojcikRadomir Wojcik
    Dec 17, 2014 at 4:56 pm
    Dec 17, 2014 at 9:24 pm
  • from django.db import models from django.contrib.auth.models import User # CORE APPLICATION # Create your models here. class Member(models.Model): user = models.OneToOneField(User) description = ...
    Shazwi SuwandiShazwi Suwandi
    Dec 15, 2014 at 7:10 am
    Dec 16, 2014 at 11:01 am
  • Hi there, I got a following Form-Class: class CustomUserprofileInterestsForm(forms.ModelForm): interests = forms.ModelMultipleChoiceField( queryset=Interests.objects.all(), ...
    inoyon artlover KLANGRAUSCHinoyon artlover KLANGRAUSCH
    Dec 4, 2014 at 9:54 pm
    Dec 9, 2014 at 1:34 pm
  • I have a django view that normally receives POSTed data from a web page. That all works fine. But now we also want to call that view from a python script. That is failing with a 403 because of a CSRF ...
    Larry MartellLarry Martell
    Dec 6, 2014 at 4:16 am
    Dec 8, 2014 at 5:04 pm
  • Hi, I have the following pseudo model that I will use as the basis of a modelformset: class Entry: athlete = ForeignKey(athlete) category = ForeignKey(category) race_number = IntegerField I have a ...
    Richard BrockieRichard Brockie
    Dec 29, 2014 at 11:07 pm
    Jan 12, 2015 at 3:58 pm
  • I am trying to migrate our current website to django 1.7. Currently we are using a plugin called django-dbgettext to get parts of our database translated (we are running in 10 different languages) ...
    Andreas KuhneAndreas Kuhne
    Dec 3, 2014 at 8:35 pm
    Jan 7, 2015 at 8:59 pm
  • Hello, is possible with Django 1.7 create a unmanaged Django model for Oracle database View? I succeeded in doing this using sqlalchemy, However, would like to use Django and Django ORM. -- Fábio C ...
    Fabio C. Barrionuevo da LuzFabio C. Barrionuevo da Luz
    Dec 31, 2014 at 4:04 pm
    Jan 4, 2015 at 7:27 pm
  • Hi, I have two Django Projects that have different use cases. There are reached using different domains. They are hosted in two different servers. Also each Django project has it's own database. Now, ...
    AndyAndy
    Dec 23, 2014 at 6:29 pm
    Dec 29, 2014 at 5:38 am
  • I understand that functions can be placed in the models fille However if I have complex queries that receive post input does the Query live in the model the views or an external module -- You ...
    PythonistaPythonista
    Dec 18, 2014 at 9:12 pm
    Dec 26, 2014 at 9:41 pm
  • Are there any known attack vectors that involve appending a period/ full-stop to a sites domain name? My Django application throws a handful of errors in production every day: ERROR: Invalid ...
    Alex HaylockAlex Haylock
    Dec 22, 2014 at 11:43 am
    Dec 23, 2014 at 12:03 am
  • Hi there. Could you tell me a good way to use Django with Micro Soft DB SQL server. I tried django_pyodbc. Any suggestion is appreciated. my PC of Environment is below. Database: SQL Server 2014 ...
    Sugita ShinsukeSugita Shinsuke
    Dec 10, 2014 at 9:22 am
    Dec 13, 2014 at 4:00 am
  • I need to connect my project to sharepoint. So i installed "sharepoint 0.4.1" package and then use this code in my view : from sharepoint import SharePointSite, basic_auth_opener def ...
    Hossein RashnooHossein Rashnoo
    Dec 6, 2014 at 12:10 pm
    Dec 9, 2014 at 1:42 pm
  • Hello i'm a very new user of python and i'd luke to install Django i want to use apache server instead of the internal Django server. i read the documentation and installed wsgi but now i don't know ...
    Th GranierTh Granier
    Dec 29, 2014 at 12:11 pm
    Dec 29, 2014 at 6:50 pm
  • I want to serve an mov file on the file system with Django the way Apache would. IBe managed to serve the file as a download but I'm looking to stream it so it plays in browser. I want to avoid ...
    Hanley HansenHanley Hansen
    Dec 27, 2014 at 4:03 pm
    Dec 27, 2014 at 10:55 pm
  • Hello! I have model form defined with all optional fields (required=False). I want use this form to update only provided fields leaving others unchanged. But Django replaces optional fields to empty ...
    Marcin J NowakMarcin J Nowak
    Dec 19, 2014 at 7:09 pm
    Dec 26, 2014 at 8:51 pm
  • Why I get only last row from my csv file, why I don't get in any time ranom row :/ import csv, random def new_name(): with open('PL_surnames.csv', newline='') as csvfile: namesreader = ...
    Dariusz MysiorDariusz Mysior
    Dec 20, 2014 at 9:37 pm
    Dec 23, 2014 at 2:07 am
  • Hello, Is there any command-line based tool which would let one auto-format Django template files? Ideally, the tool should also be used to format HTML, CSS and .JS files too. I've recently inherited ...
    Abraham VarricattAbraham Varricatt
    Dec 14, 2014 at 3:00 am
    Dec 17, 2014 at 2:38 pm
  • HI, I have a simple contact form with an address subform in the form of "TabularInline" where you can add an arbitrary amount of addresses, after I add a contact and an address and save, when I go to ...
    Gerald KleinGerald Klein
    Dec 15, 2014 at 12:52 am
    Dec 16, 2014 at 1:02 pm
  • how to learn django and I don't kill in the attempt, suggestions, recommendation. Do you know any resource, books videos for learn django from 0 ? thanks -- You received this message because you are ...
    Jorge Luis Callalle TorresJorge Luis Callalle Torres
    Dec 14, 2014 at 9:53 pm
    Dec 15, 2014 at 3:49 pm
  • Hi I wonder if you are aware of how to backup / restoration database and audit from the django admin. -- You received this message because you are subscribed to the Google Groups "Django users" ...
    Andrea ZakowiczAndrea Zakowicz
    Dec 8, 2014 at 2:13 pm
    Dec 9, 2014 at 10:34 am
  • First of all i want to say hi!, i'm new in the group :) I'm having a problem with the development server (a.k.a runserver). When i'm working in a file but i have an error (for example indent error or ...
    Mario De Frutos DieguezMario De Frutos Dieguez
    Dec 4, 2014 at 12:09 pm
    Dec 7, 2014 at 3:37 pm
  • Hi guys, I can't save the input from a custom form to database. I don't know what I am missing. Because it's using a downloaded template from the web, I'm not using the django forms. Instead, I'm ...
    RonisRonis
    Dec 30, 2014 at 7:44 pm
    Jan 4, 2015 at 7:23 pm
  • Windows 8 Django 1.7.1 Python 3.4.2 Google Chrome Version 39.0.2171.95 m Bottom of part 2 of the the tutorial https://docs.djangoproject.com/en/1.7/intro/tutorial02/ it indicates how to customize the ...
    Ken WayneKen Wayne
    Dec 23, 2014 at 10:13 pm
    Dec 29, 2014 at 7:10 pm
  • Hi, When i googled for this problem a found out, that with migrations in Django 1.7, there is new way how it should be done, but i didnt understand it how. Can anyone explain me the new way how to do ...
    Robert Jonathan ŠimonRobert Jonathan Šimon
    Dec 25, 2014 at 3:06 pm
    Dec 29, 2014 at 5:41 am
  • Hello all, this is a cross post i made on stackoverflow http://stackoverflow.com/questions/27503581/yet-another-custom-templatetag-raising-keyerror-when-debug-false I'm trying to use a custom ...
    Alexandre ProvencioAlexandre Provencio
    Dec 20, 2014 at 9:26 pm
    Dec 27, 2014 at 10:45 pm
  • Hi, I have a django model that I just added six new fields to. I ran *makemigrations *and after that noticed when we ran our rehearsal upgrade with dump of the production database that things took ...
    PjotrPjotr
    Dec 21, 2014 at 7:36 pm
    Dec 26, 2014 at 8:54 pm
  • Hi fellow Django developers, using a model with several related models, for the Django Admin I have a ModelAdmin that uses several InlineModelAdmin objects, very much as in the example at ...
    Carsten FuchsCarsten Fuchs
    Dec 18, 2014 at 5:20 pm
    Dec 22, 2014 at 5:44 pm
  • Hi All, I apologize if this has been answered, but what is the best way to search/query a model based on filters. For example, say we are setting up a shoe site. What is the best way to allow ...
    John RodkeyJohn Rodkey
    Dec 17, 2014 at 3:20 pm
    Dec 18, 2014 at 6:03 pm
  • Say I decided to switch from a third party app foo-tags to app bar-tags. Their Tag models are mostly identical so I just need to move the data from foo-tag to bar-tag. Since I don't control their ...
    John-ScottJohn-Scott
    Dec 13, 2014 at 5:26 pm
    Dec 17, 2014 at 11:30 pm
  • Hey all, I'm trying to add django-compressor into my app. I'm deploying to Heroku. This is the code in my Settings file AWS_QUERYSTRING_AUTH = False AWS_STORAGE_BUCKET_NAME = ...
    Guy TamirGuy Tamir
    Dec 10, 2014 at 4:05 pm
    Dec 16, 2014 at 8:16 am
  • Hello, don't know to how configure views.py and urls.py in myapp. for filter a list between dates from an input date in a template. This is my models.py: class Paciente(models.Model): tipo_doc = ...
    EfeEfe
    Dec 15, 2014 at 5:37 pm
    Dec 15, 2014 at 8:09 pm
  • Hallöchen! Is it correct that when using multi-table inheritance, I must not set an explicit primary key in the derived model class? Currently, I get ... File ...
    Torsten BrongerTorsten Bronger
    Dec 11, 2014 at 10:01 am
    Dec 11, 2014 at 8:13 pm
  • I am getting a request from the security infrastructure and I could use some advice/recommendation. This is a 3 tier application. Apache/Django/Sql Server Apache is https and there is a proxy server ...
    PythonistaPythonista
    Dec 10, 2014 at 4:55 pm
    Dec 11, 2014 at 12:02 pm
  • Hi, I've followed this documentation: https://docs.djangoproject.com/en/1.7/topics/testing/advanced/#using-the-django-test-runner-to-test-reusable-applications and found that it works only for Django ...
    Matwey V. KornilovMatwey V. Kornilov
    Dec 7, 2014 at 3:54 pm
    Dec 7, 2014 at 9:32 pm
  • hello all, i am very new to django , i have just started to work on django , i am using .hbs file in django project my aim is to use request.user in .hbs file i am trying this ... not working ...
    JAI PRAKASH SINGHJAI PRAKASH SINGH
    Dec 2, 2014 at 1:42 pm
    Dec 4, 2014 at 8:23 pm
  • I have a small Django App using several Class-Based Views but I am contemplating how the class views would redirect a user based upon a condition? In my case I would like to redirect user who are not ...
    RootzRootz
    Dec 2, 2014 at 2:17 pm
    Dec 3, 2014 at 3:59 pm
  • Hello I am very new to python and Django . I have a basic question : 1. I have three database tables : Table A , Table B and Table C 2. in my views.py i do : - tableB_QuerySet = ...
    Check DjangoCheck Django
    Dec 1, 2014 at 7:09 pm
    Dec 3, 2014 at 1:31 am
Group Navigation
period‹ prev | Dec 2014 | next ›
Group Overview
groupdjango-users @
categoriesdjango, python
discussions161
posts713
users224
websitedjangoproject.com

224 users for December 2014

Collin Anderson: 87 posts Vijay Khemlani: 18 posts Carl Meyer: 17 posts Russell Keith-Magee: 16 posts Cal Leeming: 15 posts Andreas Kuhne: 13 posts Daniel Roseman: 11 posts Danish Ali: 11 posts inoyon artlover KLANGRAUSCH: 11 posts Rootz: 11 posts Erik Cederstrand: 10 posts Markus Holtermann: 10 posts Hossein Rashnoo: 9 posts James Schneider: 9 posts Mario Gudelj: 9 posts Pythonista: 9 posts Tim Chase: 9 posts Shazwi Suwandi: 8 posts François Schiettecatte: 7 posts JJ Zolper: 7 posts
show more