Commit 8f7e287a authored by Star Neptune R. Sy's avatar Star Neptune R. Sy

assignment-edit.html is done

parent 0b62719b
...@@ -5,11 +5,13 @@ ...@@ -5,11 +5,13 @@
{% block pageTitle %} {{object.assignment_name}} {% endblock %} {% block pageTitle %} {{object.assignment_name}} {% endblock %}
{% block content %} {% block content %}
{% csrf_token %} <h2> {{object.course}} </h2>
{{ form.as_p }} <p> Description: {{object.description}} <br>
<input type="submit" id="submitButton" value="Submit"> Perfect Score: {{object.pefect_score}} <br>
Passing Score: {{object.passing_score}} <br>
</p>
{% endblock %} {% endblock %}
{% block otherButtons %} {% block otherButtons %}
<a class="buttonLink" href="../edit"> Edit Assignment </a>
{% endblock %} {% endblock %}
\ No newline at end of file
{% extends 'base.html' %}
{% block webTitle %} Edit Assignment {% endblock %}
{% block pageTitle %} Edit Assignment {% endblock %}
{% block content %}
{% csrf_token %}
{{ form.as_p }}
<input type="submit" id="submitButton" value="Submit">
{% endblock %}
{% block otherButtons %}
{% endblock %}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment