summaryrefslogtreecommitdiffstats
path: root/askbot/urls.py
diff options
context:
space:
mode:
authorAdolfo Fitoria <adolfo.fitoria@gmail.com>2012-08-16 11:26:13 -0600
committerAdolfo Fitoria <adolfo.fitoria@gmail.com>2012-08-16 11:26:13 -0600
commit52c62c822eb0ff73eefe1a84bd2704d0a36cea09 (patch)
treec8e22249f563926ed05650a845356a2083a69ddb /askbot/urls.py
parent455da425438d6b1cb44e698ebdd4eedf5dc57e17 (diff)
downloadaskbot-52c62c822eb0ff73eefe1a84bd2704d0a36cea09.tar.gz
askbot-52c62c822eb0ff73eefe1a84bd2704d0a36cea09.tar.bz2
askbot-52c62c822eb0ff73eefe1a84bd2704d0a36cea09.zip
Fixed bugs on the widget creator and widget js code.
Made it work with more than two widgets at the time
Diffstat (limited to 'askbot/urls.py')
-rw-r--r--askbot/urls.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/askbot/urls.py b/askbot/urls.py
index 8b0cb7cb..f6499845 100644
--- a/askbot/urls.py
+++ b/askbot/urls.py
@@ -398,6 +398,12 @@ urlpatterns = patterns('',
name = 'render_ask_widget'
),
url(
+ r'^widgets/ask/(?P<widget_id>\d+).css$',
+ views.widgets.render_ask_widget_css,
+ name = 'render_ask_widget_css'
+ ),
+
+ url(
r'^widgets/ask/complete/$',
views.widgets.ask_widget_complete,
name = 'ask_by_widget_complete'