Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 529883
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T09:08:17+00:00 2026-05-13T09:08:17+00:00

I’m getting a strange error and can’t figure out why. I’d appreciate any input.

  • 0

I’m getting a strange error and can’t figure out why. I’d appreciate any input. I’ve been stuck on this for a few days. Here is my code:

models.py

class Employee(models.Model): 
    lastname = models.CharField(max_length=75) 
    firstname = models.CharField(max_length=75) 
    position = models.ForeignKey(Position) 
    jurisdiction = models.ForeignKey(Jurisdiction) 
    basepay = models.FloatField()
    ot = models.FloatField()
    benefits = models.FloatField()
    totalpay = models.FloatField()

    class Meta: 
        ordering = ['lastname', 'firstname'] 
    def __unicode__(self): 
        return "%s %s" % (self.firstname, self.lastname) 
    def full_name(self): 
        return "%s, %s" % (self.lastname, self.firstname) 
    def get_absolute_url(self): 
        return "/salaries/employee/%s/" % self.id  

urls.py

from django.conf.urls.defaults import *
from djangodemo.salaries.models import Employee
from django.views.generic import list_detail

employee_info = {
    "queryset" : Employee.objects.all(),
    "template_name" : "salaries/employee.html",
}

urlpatterns = patterns('',     
    (r'^salaries/employee/$', list_detail.object_list, 'employee_info'),
)

employee.html

{{ object_list }}

When I run python manage.py runserver and look at http://127.0.0.1:8000/salaries/employee in my browser, I get this error:

Traceback (most recent call last):

  File "F:\django\instantdjango\Python26\Lib\site-packages\django\core\servers\basehttp.py", line 279, in run
    self.result = application(self.environ, self.start_response)

  File "F:\django\instantdjango\Python26\Lib\site-packages\django\core\servers\basehttp.py", line 651, in __call__
    return self.application(environ, start_response)

  File "F:\django\instantdjango\Python26\Lib\site-packages\django\core\handlers\wsgi.py", line 241, in __call__
    response = self.get_response(request)

  File "F:\django\instantdjango\Python26\Lib\site-packages\django\core\handlers\base.py", line 73, in get_response
    response = middleware_method(request)

  File "F:\django\instantdjango\Python26\Lib\site-packages\django\middleware\common.py", line 57, in process_request
    _is_valid_path("%s/" % request.path_info)):

  File "F:\django\instantdjango\Python26\Lib\site-packages\django\middleware\common.py", line 142, in _is_valid_path
    urlresolvers.resolve(path)

  File "F:\django\instantdjango\Python26\Lib\site-packages\django\core\urlresolvers.py", line 294, in resolve
    return get_resolver(urlconf).resolve(path)

  File "F:\django\instantdjango\Python26\Lib\site-packages\django\core\urlresolvers.py", line 218, in resolve
    sub_match = pattern.resolve(new_path)

  File "F:\django\instantdjango\Python26\Lib\site-packages\django\core\urlresolvers.py", line 123, in resolve
    kwargs.update(self.default_args)

ValueError: dictionary update sequence element #0 has length 1; 2 is required
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T09:08:17+00:00Added an answer on May 13, 2026 at 9:08 am
    urlpatterns = patterns('',     
        (r'^salaries/employee/$', list_detail.object_list, 'employee_info'),
    )
    

    The third item in the tuple needs to be a dictionary, not a string. Try removing the single quotes around employee_info:

    urlpatterns = patterns('',     
        (r'^salaries/employee/$', list_detail.object_list, employee_info),
    )
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.