# HG changeset patch # User nishanth # Date 1265370660 -19800 # Node ID 0f10deac0a9bcd2947eeba1972c0d7b8ae6cb892 # Parent da5fe67085288d9583508bf8ab667d685bbd9d4a made urls.py look better and added an empty method edit_task to taskViews . diff -r da5fe6708528 -r 0f10deac0a9b taskapp/views/task.py --- a/taskapp/views/task.py Fri Feb 05 17:11:18 2010 +0530 +++ b/taskapp/views/task.py Fri Feb 05 17:21:00 2010 +0530 @@ -255,4 +255,9 @@ else: return show_msg('You are not authorised to perform this action', task_url, 'view the task') +def edit_task(request, tid): + """ see what are the attributes that can be edited depending on the current status + and then give the user fields accordingly. + """ + return None diff -r da5fe6708528 -r 0f10deac0a9b urls.py --- a/urls.py Fri Feb 05 17:11:18 2010 +0530 +++ b/urls.py Fri Feb 05 17:21:00 2010 +0530 @@ -4,8 +4,8 @@ from django.contrib import admin admin.autodiscover() -from pytask.taskapp.views.user import homepage, register, user_login, user_logout, view_my_profile, edit_my_profile, browse_users -from pytask.taskapp.views.task import browse_tasks, view_task, create_task, add_mentor, add_tasks, claim_task, assign_task +from pytask.taskapp.views import user as userViews +from pytask.taskapp.views import task as taskViews from pytask.taskapp.utils.seed_db import seed_db @@ -17,26 +17,26 @@ # to INSTALLED_APPS to enable admin documentation: # (r'^admin/doc/', include('django.contrib.admindocs.urls')), - (r'^$', homepage), + (r'^$', userViews.homepage), - (r'^task/browse/$', browse_tasks), - (r'^task/view/tid=(\d+)$', view_task), - (r'^task/create/$', create_task), - (r'^task/addmentor/tid=(\d+)', add_mentor), - #(r'^task/addtasks/tid=(\d+)', add_tasks), - (r'^task/edit/tid=(\d+)', edit_task), - (r'^task/claim/tid=(\d+)', claim_task), - (r'^task/assign/tid=(\d+)', assign_task), + (r'^task/browse/$', taskViews.browse_tasks), + (r'^task/view/tid=(\d+)$', taskViews.view_task), + (r'^task/create/$', taskViews.create_task), + (r'^task/addmentor/tid=(\d+)', taskViews.add_mentor), + #(r'^task/addtasks/tid=(\d+)', taskViews.add_tasks), + (r'^task/edit/tid=(\d+)', taskViews.edit_task), + (r'^task/claim/tid=(\d+)', taskViews.claim_task), + (r'^task/assign/tid=(\d+)', taskViews.assign_task), (r'^admin/', include(admin.site.urls)), - (r'^accounts/register/$',register), - (r'^accounts/login/$',user_login), - (r'^accounts/logout/$',user_logout), + (r'^accounts/register/$', userViews.register), + (r'^accounts/login/$', userViews.user_login), + (r'^accounts/logout/$', userViews.user_logout), - (r'^user/view/uid=(\d+)$', view_my_profile), - (r'^user/edit/?$', edit_my_profile), - (r'^user/browse/?$',browse_users), + (r'^user/view/uid=(\d+)$', userViews.view_my_profile), + (r'^user/edit/?$', userViews.edit_my_profile), + (r'^user/browse/?$', userViews.browse_users), (r'^seed_db/$', seed_db), )