diff options
Diffstat (limited to 'grades/templates/add_grades.html')
-rw-r--r-- | grades/templates/add_grades.html | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/grades/templates/add_grades.html b/grades/templates/add_grades.html index f2f0051..1e4d29e 100644 --- a/grades/templates/add_grades.html +++ b/grades/templates/add_grades.html @@ -20,9 +20,11 @@ </div> <hr> {% endfor %} - - <input type="submit" id="add" name="add" value="Add"> - <input type="submit" id="save" name="save" value="Save"> - + {% if not is_default %} + <input type="submit" id="add" name="add" value="Add"> + <input type="submit" id="save" name="save" value="Save"> + {% else %} + <p><b>Note: This is a default grading system. You cannot change this.</b></p> + {% endif %} </form> </html> |