publish back to coming soon state

This commit is contained in:
Sanj 2011-07-04 22:33:25 +05:30
parent b6cdddbe55
commit 825c83ce44
2 changed files with 2 additions and 2 deletions

View File

@ -89,6 +89,7 @@ def add_category(request):
c.save()
return render_to_json_response({'category_id': c.id, 'category_name': c.name})
class FolderSelect(forms.widgets.Select):
def _get_choices(self):
return getFolderList()
@ -100,7 +101,6 @@ class FolderSelect(forms.widgets.Select):
choices = property(_get_choices, _set_choices)
class FolderField(forms.ChoiceField):
widget = FolderSelect

View File

@ -18,7 +18,7 @@ urlpatterns = patterns('',
(r'^sandbox/home$', 'main.views.home'),
(r'^sandbox/contact$', 'main.views.contact'),
(r'^sandbox/archive$', 'files.views.browse'),
(r'^sandbox/publish$', 'editor.views.create_article'),
(r'^sandbox/publish$', 'main.views.publish'),
(r'^sandbox/browse$', 'main.views.browse'),
(r'^sandbox/upload$', 'files.views.upload_files'),
(r'^sandbox/faq$', 'main.views.faq'),