Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added requested changes in add-results html #293

Open
wants to merge 6 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
79 changes: 79 additions & 0 deletions templates/add-results.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="author" content="Rebecca Våge Husa"/>
<meta
name="description"
content="The add results page for Edugate. Edugate is a result management system for high schools in Nigeria."/>
<link rel="stylesheet" href=""/>
<script src="" defer></script>
<title>Edugate | Add results</title>
</head>
<body>
<header></header>
<main>
<nav>
<a href="#">Dashboard</a> &gt;
<a href="#">Add results</a>
</nav>
<h1>Add results</h1>
<h2>To add results, upload an excel spreadsheet with this format:</h2>
<table border="1">
<thead>
<tr>
<th>#</th>
<th>A</th>
<th>B</th>
<th>C</th>
<th>D</th>
<th>E</th>
<th>F</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>school_id</td>
<td>student_id</td>
<td>year</td>
<td>term</td>
<td>results</td>
<td>grade</td>
</tr>
<tr>
<td>2</td>
<td>School ID</td>
<td>Student ID</td>
<td>Year of Exam</td>
<td>Term Number (1-3)</td>
<td>Number/Number</td>
<td>Exam grade</td>
</tr>
<tr>
<td>3</td>
<td>#</td>
<td>#</td>
<td>#</td>
<td>#</td>
<td>#</td>
<td>#</td>
</tr>
<tr>
<td>4</td>
<td>#</td>
<td>#</td>
<td>#</td>
<td>#</td>
<td>#</td>
<td>#</td>
</tr>
</tbody>
</table>
<button type="button" class="upload-button">Upload +</button>
<button type="button" class="back2dashb-button">Back to dashboard</button>
</main>
<footer></footer>
</body>
</html>