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 7073005
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T05:52:39+00:00 2026-05-28T05:52:39+00:00

When i try to create a new project in Timepiece the project is added

  • 0

When i try to create a new project in Timepiece the project is added to my model as i can see in the backend but the view gives me a TemplateSyntaxError.

it states:

Caught ImproperlyConfigured while rendering: settings.AJAX_LOOKUP_CHANNELS not configured correctly for 'user'

the django docs give me that there is a setting missing in my settings.py. But i don’t know which.

Excuse me if this is very obvious.

My traceback:

Environment:

Request Method: GET
Request URL: http://localhost:8000/timepiece/project/13/

Django Version: 1.3.1
Python Version: 2.7.1
Installed Applications:
['django.contrib.auth',
 'django.contrib.contenttypes',
 'django.contrib.sessions',
 'django.contrib.sites',
 'django.contrib.messages',
 'django.contrib.staticfiles',
 'django.contrib.admin',
 'django.contrib.markup',
 'django.contrib.flatpages',
 'pagination',
 'ajax_select',
 'timepiece',
 'debug_toolbar',
 'django_extensions']
Installed Middleware:
('django.middleware.cache.UpdateCacheMiddleware',
 'django.middleware.common.CommonMiddleware',
 'django.contrib.sessions.middleware.SessionMiddleware',
 'django.contrib.auth.middleware.AuthenticationMiddleware',
 'django.middleware.transaction.TransactionMiddleware',
 'django.middleware.http.ConditionalGetMiddleware',
 'django.contrib.flatpages.middleware.FlatpageFallbackMiddleware',
 'django.middleware.cache.FetchFromCacheMiddleware',
 'debug_toolbar.middleware.DebugToolbarMiddleware')


Template error:
In template /Users/Bair1/virtualenvs/erp/erp/apps/timepiece/templates/timepiece/project/view.html, error at line 41
   Caught ImproperlyConfigured while rendering: settings.AJAX_LOOKUP_CHANNELS not configured correctly for 'user'
   31 :                 <a title='Remove {{ user.get_full_name }}' href='{% url remove_user_from_project project_id=project.id,user_id=user.id %}?next={% url view_project project_id=project.id %}'><img alt='Remove {{ user.get_full_name }}' src='{{ FAMFAMFAM_URL }}/delete.png' /></a>


   32 :             {% endif %}


   33 :         </li>


   34 :     {% endfor %}


   35 :     {% endifnotequal %}


   36 :     </ul>


   37 :     {% if perms.timepiece.add_projectrelationship %}


   38 :     <form id="add-user" action='{% url add_user_to_project project_id=project.id %}?next={% url view_project project_id=project.id %}' method="post" accept-charset="utf-8">


   39 :         {% csrf_token %}


   40 :         <div class="field-wrapper">


   41 :              {{ add_user_form }} 


   42 :             <input type="submit" name="submit" value="Add" id="submit" />


   43 :         </div>


   44 :     </form>


   45 :     {% endif %}


   46 : </div>


   47 : 


   48 : <table class='vertical'>


   49 :     <tr>


   50 :         <th>Type:</th>


   51 :         <td>{{ project.type }}</td>


Traceback:
File "/Users/Bair1/virtualenvs/erp/lib/python2.7/site-packages/django/core/handlers/base.py" in get_response
  111.                         response = callback(request, *callback_args, **callback_kwargs)
File "/Users/Bair1/virtualenvs/erp/lib/python2.7/site-packages/django/contrib/auth/decorators.py" in _wrapped_view
  23.                 return view_func(request, *args, **kwargs)
File "/Users/Bair1/virtualenvs/erp/lib/python2.7/site-packages/django/db/transaction.py" in inner
  217.                 res = func(*args, **kwargs)
File "/Users/Bair1/virtualenvs/erp/erp/apps/timepiece/utils.py" in wrapper
  63.                     context_instance=RequestContext(request),
File "/Users/Bair1/virtualenvs/erp/lib/python2.7/site-packages/django/shortcuts/__init__.py" in render_to_response
  20.     return HttpResponse(loader.render_to_string(*args, **kwargs), **httpresponse_kwargs)
File "/Users/Bair1/virtualenvs/erp/lib/python2.7/site-packages/django/template/loader.py" in render_to_string
  188.         return t.render(context_instance)
File "/Users/Bair1/virtualenvs/erp/lib/python2.7/site-packages/django/template/base.py" in render
  123.             return self._render(context)
File "/Users/Bair1/virtualenvs/erp/lib/python2.7/site-packages/django/template/base.py" in _render
  117.         return self.nodelist.render(context)
File "/Users/Bair1/virtualenvs/erp/lib/python2.7/site-packages/django/template/base.py" in render
  744.                 bits.append(self.render_node(node, context))
File "/Users/Bair1/virtualenvs/erp/lib/python2.7/site-packages/django/template/debug.py" in render_node
  73.             result = node.render(context)
File "/Users/Bair1/virtualenvs/erp/lib/python2.7/site-packages/django/template/loader_tags.py" in render
  127.         return compiled_parent._render(context)
File "/Users/Bair1/virtualenvs/erp/lib/python2.7/site-packages/django/template/base.py" in _render
  117.         return self.nodelist.render(context)
File "/Users/Bair1/virtualenvs/erp/lib/python2.7/site-packages/django/template/base.py" in render
  744.                 bits.append(self.render_node(node, context))
File "/Users/Bair1/virtualenvs/erp/lib/python2.7/site-packages/django/template/debug.py" in render_node
  73.             result = node.render(context)
File "/Users/Bair1/virtualenvs/erp/lib/python2.7/site-packages/django/template/loader_tags.py" in render
  64.             result = block.nodelist.render(context)
File "/Users/Bair1/virtualenvs/erp/lib/python2.7/site-packages/django/template/base.py" in render
  744.                 bits.append(self.render_node(node, context))
File "/Users/Bair1/virtualenvs/erp/lib/python2.7/site-packages/django/template/debug.py" in render_node
  73.             result = node.render(context)
File "/Users/Bair1/virtualenvs/erp/lib/python2.7/site-packages/django/template/defaulttags.py" in render
  311.             return self.nodelist_true.render(context)
File "/Users/Bair1/virtualenvs/erp/lib/python2.7/site-packages/django/template/base.py" in render
  744.                 bits.append(self.render_node(node, context))
File "/Users/Bair1/virtualenvs/erp/lib/python2.7/site-packages/django/template/debug.py" in render_node
  73.             result = node.render(context)
File "/Users/Bair1/virtualenvs/erp/lib/python2.7/site-packages/django/template/debug.py" in render
  92.             output = force_unicode(output)
File "/Users/Bair1/virtualenvs/erp/lib/python2.7/site-packages/django/utils/encoding.py" in force_unicode
  71.                 s = unicode(s)
File "/Users/Bair1/virtualenvs/erp/lib/python2.7/site-packages/django/forms/forms.py" in __unicode__
  95.         return self.as_table()
File "/Users/Bair1/virtualenvs/erp/lib/python2.7/site-packages/django/forms/forms.py" in as_table
  217.             errors_on_separate_row = False)
File "/Users/Bair1/virtualenvs/erp/lib/python2.7/site-packages/django/forms/forms.py" in _html_output
  180.                     'field': unicode(bf),
File "/Users/Bair1/virtualenvs/erp/lib/python2.7/site-packages/django/forms/forms.py" in __unicode__
  408.         return self.as_widget()
File "/Users/Bair1/virtualenvs/erp/lib/python2.7/site-packages/django/forms/forms.py" in as_widget
  439.         return widget.render(name, self.value(), attrs=attrs)
File "/Users/Bair1/virtualenvs/erp/lib/python2.7/site-packages/ajax_select/fields.py" in render
  35.         lookup = get_lookup(self.channel)
File "/Users/Bair1/virtualenvs/erp/lib/python2.7/site-packages/ajax_select/__init__.py" in get_lookup
  115.         raise ImproperlyConfigured("settings.AJAX_LOOKUP_CHANNELS not configured correctly for %r" % channel)

Exception Type: TemplateSyntaxError at /timepiece/project/13/
Exception Value: Caught ImproperlyConfigured while rendering: settings.AJAX_LOOKUP_CHANNELS not configured correctly for 'user'
  • 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-28T05:52:40+00:00Added an answer on May 28, 2026 at 5:52 am

    It looks like you are using django_ajax_selects project which requires a setting AJAX_LOOKUP_CHANNEL in your main settings.py that maps models to fields. Something like:

    AJAX_LOOKUP_CHANNELS = {
        'person'  : {'model':'example.person', 'search_field':'name'}
    }
    

    (from it’s docs)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When I try to create a new project($ rails new first_app) it gives following
i have try to create new ndk project in eclipse i have done all
My VS 2003 is not working. Whenever I try to create a new project
Whenever I try to create a new Android project (inside an empty workspace) with
I try use jira soap api on c#: create new project in VS2010 add
If I create a new class library project in VB.NET, I can create subfolders
Whenever I try to add a new project to my SourceSafe repository it creates
I try to create a new file inside a JSP and try to save
When I try to create a new RegionInfo with certain ISO 3166 country codes
When I try to create a new Maintenance Plan in SQL Server, I get

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.