hacknight icon indicating copy to clipboard operation
hacknight copied to clipboard

comment form breaks

Open kracekumar opened this issue 11 years ago • 0 comments

Comment form in project page raise TypeError while viewing the project page.

Traceback:

Traceback (most recent call last):
  File "/Library/Python/2.7/site-packages/Flask-0.9-py2.7.egg/flask/app.py", line 1701, in __call__
    return self.wsgi_app(environ, start_response)
  File "/Library/Python/2.7/site-packages/Flask-0.9-py2.7.egg/flask/app.py", line 1689, in wsgi_app
    response = self.make_response(self.handle_exception(e))
  File "/Library/Python/2.7/site-packages/Flask-0.9-py2.7.egg/flask/app.py", line 1687, in wsgi_app
    response = self.full_dispatch_request()
  File "/Library/Python/2.7/site-packages/Flask-0.9-py2.7.egg/flask/app.py", line 1360, in full_dispatch_request
    rv = self.handle_user_exception(e)
  File "/Library/Python/2.7/site-packages/Flask-0.9-py2.7.egg/flask/app.py", line 1358, in full_dispatch_request
    rv = self.dispatch_request()
  File "/Library/Python/2.7/site-packages/Flask-0.9-py2.7.egg/flask/app.py", line 1344, in dispatch_request
    return self.view_functions[rule.endpoint](**req.view_args)
  File "/Users/kracekumarramaraju/code/coaster/coaster/views.py", line 382, in decorated_function
    return f(**result)
  File "/Users/kracekumarramaraju/code/hacknight/hacknight/views/project.py", line 242, in project_view
    breadcrumbs=[(url_for('index'), "home")], user_is_member=user_is_member)
  File "/Library/Python/2.7/site-packages/Flask-0.9-py2.7.egg/flask/templating.py", line 125, in render_template
    context, ctx.app)
  File "/Library/Python/2.7/site-packages/Flask-0.9-py2.7.egg/flask/templating.py", line 107, in _render
    rv = template.render(context)
  File "/Library/Python/2.7/site-packages/jinja2/environment.py", line 894, in render
    return self.environment.handle_exception(exc_info, True)
  File "/Users/kracekumarramaraju/code/hacknight/hacknight/templates/project.html", line 3, in top-level template code
    {% from "forms.html" import renderform, ajaxform %}
  File "/Users/kracekumarramaraju/code/hacknight/hacknight/templates/layout.html", line 2, in top-level template code
    {% from "baseframe/components.html" import networkbar with context %}
  File "/Users/kracekumarramaraju/code/baseframe/baseframe/templates/baseframe.html", line 48, in top-level template code
    {% block root -%}
  File "/Users/kracekumarramaraju/code/baseframe/baseframe/templates/baseframe.html", line 64, in block "root"
    {% block main -%}
  File "/Users/kracekumarramaraju/code/baseframe/baseframe/templates/baseframe.html", line 68, in block "main"
    {%- block basecontent %}{% endblock %}
  File "/Users/kracekumarramaraju/code/hacknight/hacknight/templates/layout.html", line 37, in block "basecontent"
    {% block content %}{% endblock %}
  File "/Users/kracekumarramaraju/code/hacknight/hacknight/templates/project.html", line 78, in block "content"
    {{ commentform.edit_id() }}

kracekumar avatar Aug 21 '13 06:08 kracekumar