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 :
>
> Hi There
>
> anyon
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:
> Hey all,
>
> I apol
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 t
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 below), but the screen I
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 experienc
Thanks Daniel!
I try to always RTFM, but this slipped by me.
On Thu, Nov 21, 2013 at 5:32 AM, Daniel Roseman wrote:
> On Wednesday, 20 November 2013 22:49:28 UTC, Thomas Murphy wrote:
>>
>> Hi all,
>>
>> I'm working on a hour-reporting system.
>>
>>
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 personal
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, visit https://groups.google.co
e 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@googlegroups.com.
> Visit this g
http://www.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 wrote:
> On 25/10/2013 6:1
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 1.
11 matches
Mail list logo