{% extends 'simple_bugs/base.html' %} {% block extrahead %} {% load wysiwyg %}{% wysiwyg_setup %} {% endblock %} {% block content %} {% load crispy_forms_filters %}
{% csrf_token %}
Create A New Bug {{ form|crispy }}
{% if case %}

Recent Cases

{% for case in case %} {% endfor %}
Type ID Title Status
{% if case.type == 'BUG' %} {% elif case.type == 'FEATURE_REQUEST' %} {% endif %} {{ case.id }} {{ case.title }} {% if case.closed == False %} Open {% elif case.closed == True%} Closed {% endif %}
{% else %}

No Recent Cases

{% endif %}
{% wysiwyg_editor 'id_detail' %} {% endblock %}