-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from GatorEducator/quickfix/release-changes
Full release
- Loading branch information
Showing
11 changed files
with
147 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<!--Displays form for student to join a class--> | ||
{% extends "/students/base_template.html" %} | ||
{% block title %}Your Classes{% endblock %} | ||
{% block body %} | ||
<style> | ||
ul { | ||
list-style-type: none; | ||
margin: 0; | ||
} | ||
a span { | ||
font-size: 12px; | ||
} | ||
</style> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="span12"> | ||
<h1>Join a Class</h1> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="span4"> | ||
<form method="POST" action="/students/classes/join/"> | ||
<fieldset> | ||
<label for="id">Class ID</label> | ||
<input required type="text" name="id"/> | ||
<input type="submit" class="btn btn-primary"> | ||
</fieldset> | ||
</form> | ||
</div> | ||
</div> | ||
</div> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<!--Displays the grade for a given quiz--> | ||
{% extends "/students/base_template.html" %} | ||
{% block title %}{{class_name}}: {{quiz_name}}{% endblock %} | ||
{% block body %} | ||
<style> | ||
ul { | ||
list-style-type: none; | ||
margin: 0; | ||
} | ||
</style> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="span12"> | ||
<h1>{{class_name}}: {{quiz_name}}</h1> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="span8"> | ||
<h2>Grade Received</h2> | ||
{{grade}} | ||
</div> | ||
</div> | ||
</div> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.