{% extends 'web_template/index.html' %}
|
{% load i18n %}
|
{% load static %}
|
{% load problemparser %}
|
{% block stylesheets %}
|
{{ block.super }}
|
<link rel="stylesheet" type="text/css" href="{% static 'datatables/media/css/dataTables.bootstrap.min.css' %}">
|
<link rel="stylesheet" type="text/css" href="{% static 'exam/draggable.css' %}">
|
{% endblock %}
|
{% block page_name %}
|
{% trans 'Create/Edit Problem Group' %}
|
{% endblock %}
|
{% block page_description %}
|
{% endblock %}
|
{%block content %}
|
<div class="box">
|
<div class="box-header">
|
<h3 class="box-title">ProblemGroup Form</h3>
|
</div>
|
<!-- /.box-header -->
|
<div class="box-body">
|
<form method="POST" class="post-form" url='{% url 'problemgroupnew' %}'>{% csrf_token %}
|
{{ form.as_p }}
|
<button type="submit" class="save btn btn-default">Save</button>
|
</form>
|
</div>
|
</div
|
{% endblock %}
|
|
{% block extra_foot %}
|
{{ block.super }}
|
|
{% endblock %}
|