Skip to content

Commit 919ceb8

Browse files
P10 Added judging critera page (#66)
1 parent 3147e82 commit 919ceb8

5 files changed

Lines changed: 56 additions & 6 deletions

File tree

.env_sample

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
DEVELOPMENT=1
2-
SECRET_KEY="your_secret_key_here"
3-
SITE_NAME="localhost"
1+
DEVELOPMENT=1
2+
SECRET_KEY="your_secret_key_here"
3+
SITE_NAME="localhost"

git

Whitespace-only changes.

home/views.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,4 @@ def useful_resources(request):
3535
""" A view to return the Useful Resources page """
3636

3737
return render(request, "useful-resources.html")
38+

templates/includes/navbar.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
</a>
3030
<div class="dropdown-menu" aria-labelledby="navbarResources">
3131
<a class="dropdown-item" href="#">FAQs</a>
32-
<a class="dropdown-item" href="#">Judging Criteria</a>
32+
<a class="dropdown-item" href="{% url 'judging_criteria' %}">Judging Criteria</a>
3333
<a class="dropdown-item" href="#">Useful Resources</a>
3434
</div>
3535
</li>

templates/judging-criteria.html

Lines changed: 51 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,57 @@
11
{% extends "base.html" %}
22
{% load static %}
33
{% block content %}
4+
<div class="container">
45

5-
<h1>Judging Criteria</h1>
6-
<!-- help needed -->
6+
<div class="row">
7+
<div class="col row justify-content-center">
8+
<h1>Judging Criteria for Hackaton</h1>
9+
</div>
10+
</div>
711

12+
<div class="mt-2">
13+
<div class="row">
14+
<div class="col-md-6">
15+
<h2 class="font-weight-bold">Content</h2>
16+
17+
<p>Content is the information provided on the site. It is not just text, but music, sound, animation, or
18+
video – anything that communicates a site’s body of knowledge. Good content should be engaging,
19+
relevant, and appropriate for the audience; you can tell it’s been developed for the Web because
20+
it’s clear and concise and it works in the medium. Good content takes a stand. It has a voice and a
21+
point of view. It may be informative, useful, or funny, but it always leaves you wanting more.</p>
22+
</div>
23+
<div class="col-md-6">
24+
<h2 class="font-weight-bold">Structure and navigation</h2>
25+
26+
<p>Refers to the framework of a site, the organization of content, the prioritization of information,
27+
and the method in which you move through the site. Sites with good structure and navigation are
28+
consistent, intuitive, and transparent. They allow you to form a mental model of the information
29+
provided: where to find things and what to expect when you click. Good navigation gets you where you
30+
want to go quickly and offers easy access to the breadth and depth of the site’s content.</p>
31+
</div>
32+
</div>
33+
<div class="row">
34+
<div class="col-md-6">
35+
<h2 class="font-weight-bold">Visual design</h2>
36+
37+
<p>The appearance of the site. It’s more than just a pretty homepage, and it doesn’t have to be cutting
38+
edge or trendy. Good visual design is high quality, appropriate, and relevant for the audience and
39+
the message it is supporting. It communicates a visual experience and may even take your breath
40+
away.</p>
41+
</div>
42+
<div class="col-md-6">
43+
<h2 class="font-weight-bold">Functionality</h2>
44+
45+
<p>Good functionality means the site works well. It loads quickly, has live links, and any new
46+
technology used is functional and relevant for the intended audience. The site should work
47+
cross-platform and be browser independent. Highly functional sites anticipate the diversity of user
48+
requirements from file size and format to download speed. The most functional sites also take into
49+
consideration those with special access needs. Good functionality makes the experience center stage
50+
and the technology invisible.</p>
51+
</div>
52+
</div>
53+
</div>
54+
55+
</div>
856
{% endblock %}
57+

0 commit comments

Comments
 (0)