Re: All Urls lead to home.html

2015-06-02 Thread Thomas Murphy
Hi Jariel, What URI are you accessing to get to your admin page? Can you show us your urls.py? Best, Thomas On Tue, Jun 2, 2015 at 1:46 PM, Jariel Arias wrote: > For some reason every time I try to go to my admin page it takes me back > to my home.html which is just : >

Re: What to do after python manage.py runserver

2014-03-04 Thread Thomas Murphy
Hi Matthew, You'll want to leave the window you typed runserver in open so your app can print information about it's activities to that window. Open another terminal window and proceed from there. Happy Hacking! Thomas On Tue, Mar 4, 2014 at 4:50 PM, Matthew Epps wrote: >

Re: Incorporate jQuery grid with django

2014-01-07 Thread Thomas Murphy
Hi Igor, I'm unsure about the usb issue, but the "Django" way is to place all of your static files in a specific directory and use the manage.py collectstatic command, then serve them from a static location. This will allow you to offload your statics to a CDN as your site grows. Have a look at

Re: Django Tutorial 2 - Start the development server: why I couldn't get the admin’s login screen?

2013-12-16 Thread Thomas Murphy
Have you enabled admin in settings.py? What about setting up the database and creating the initial super user? On Mon, Dec 16, 2013 at 3:42 PM, Yuqi Wang wrote: > I think I did every step before this, the tutorial says there should be > the admin's login screen (fig 1

Testing Frameworks and Practices(consensus?)

2013-12-11 Thread Thomas Murphy
Hi, This seems like a more appropriate forum that SO for this discussion. I've been testing my apps with Selenium, which seems to be a popular choice for Django, but so does unittest and some others, as well as using coverage to check for code coverage. I'm curious to hear about others

Re: Model Design: Adding Params to Relationship FIelds

2013-11-21 Thread Thomas Murphy
Thanks Daniel! I try to always RTFM, but this slipped by me. On Thu, Nov 21, 2013 at 5:32 AM, Daniel Roseman <dan...@roseman.org.uk> wrote: > On Wednesday, 20 November 2013 22:49:28 UTC, Thomas Murphy wrote: >> >> Hi all, >> >> I'm working on a hour-reporting sy

Model Design: Adding Params to Relationship FIelds

2013-11-20 Thread Thomas Murphy
Hi all, I'm working on a hour-reporting system. Each Project has many Users, and each User has many Projects(These are established and working nicely). My design issue is this: How can I assign each User an IntegerField "Hours" on each Project they are assigned to? This Integer Field is

Re: Problem with Oauth and 1.6

2013-11-07 Thread Thomas Murphy
up, send email to django-users@googlegroups.com. > Visit this group at http://groups.google.com/group/django-users. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/18c6c4b0-5368-40b5-bb76-23808a9c238b%40googlegroups.com. > For more options,

Re: Seeking reviewers for a "Guide to Idiomatic Django Deployment"

2013-11-06 Thread Thomas Murphy
his message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to django-users+unsubscr...@googlegroups.com. > To post to this group, send email to django-users@google

Re: 1.5.4 /static/ serving 500 error

2013-10-30 Thread Thomas Murphy
.tangowithdjango.com/book/chapters/templates_static.html#serving-static-media) I believe tangowithdjango is written for 1.5.4, so I'll follow up with them as well. (Are they on this list)? Best, Thomas On Thu, Oct 24, 2013 at 4:56 PM, Mike Dewhirst <mi...@dewhirst.com.au> wrote: > On 25/

1.5.4 /static/ serving 500 error

2013-10-24 Thread Thomas Murphy
Hi all, with structure |myproject |---static |---picture.jpg |--myproject ---settings.py settings.py import os MYPROJECT_PATH = os.getcwd() DEBUG = True *** STATIC_ROOT = os.path.join(MYPROJECT_PATH, 'static') STATIC_URL = '/static/' STATICFILES_DIRS = (STATIC_ROOT,) in Django