I'm trying to add my own app to the site I created when I went though
the tutorial.  So, I've already got "polls" set up, and I'm trying to
set up an app called liontamer.  I've done essentially the same thing
as the polls site (described below), but when I try to go to the root
url (localhost:8000/liontamer/), I get a 404.  I don't understand why.
Is there a way to get more verbose output (manage runserver 8000
--verbosity=2 doesn't seem to give me any more info than without).

I made mysite/urls.py look like this:

===
from django.conf.urls.defaults import *

urlpatterns = patterns('',
    (r'^liontamer/', include('mysite.liontamer.urls')),
    (r'^polls/', include('mysite.polls.urls')),
    )
===

I added 'mysite.liontamer' to settings.py:INSTALLED_APPS.
I've created my models, and "manage syncdb" seems happy with them.
mysite/liontamer/urls.py looks like this:
===
from django.conf.urls.defaults import *
from mysite.liontamer.models import Transaction, Acct, Source

info_dict = {
    'queryset': Transaction.objects.all(),
}

urlpatterns = patterns('',
    (r'^$', 'django.views.generic.list_detail.object_list', info_dict),
    (r'^(?P<object_id>\d+)/$',
'django.views.generic.list_detail.object_detail', info_dict),
)
===

And I've created the following transaction_list.html, in
templates/liontamer:
===
{% if object_list %}
    <ul>
    {% for object in object_list %}
        <li>{{ object.date }}</li>
    {% endfor %}
    </ul>
{% else %}
    <p>No transactions are available.</p>
{% endif %}
===


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to