Commit bd901e01 authored by Rafa Mendoza's avatar Rafa Mendoza

made all headings h1

parent 3d9aa565
No preview for this file type
No preview for this file type
File added
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
File added
......@@ -3,7 +3,7 @@
{% block title %}Edit Announcement{% endblock %}
{% block heading %}Edit announcement:{% endblock %}
{% block heading %} <h1> Edit announcement: </h1> {% endblock %}
{% block content %}
<form method="post">
......
......@@ -3,7 +3,7 @@
{% block title %}Widget's Announcement Board{% endblock %}
{% block heading %}Welcome to Widget's Announcement Board!{% endblock %}
{% block heading %} <h1> Welcome to Widget's Announcement Board! </h1> {% endblock %}
{% block content %}
<p>
......
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
{% extends 'base.html' %}
{% block title %} Add Assignment {% endblock %}
{% block heading %} Add a new assignment: {% endblock %}
{% block heading %} <h1> Add a new assignment: </h1> {% endblock %}
{% block content %}
<form method="POST">
{% csrf_token %}
......
{% extends 'base.html' %}
{% block title %} {{ assignment.name }} {% endblock %}
{% block heading %} {{ assignment.name }} {% endblock %}
{% block heading %} <h1> {{ assignment.name }} </h1> {% endblock %}
{% block content %}
<p>
{{ assignment.course.code }} {{ assignment.course.title }} - {{ assignment.course.section }}<br>
......
{% extends 'base.html' %}
{% block title %} Edit Assignment {% endblock %}
{% block heading %} Edit Assignment: {% endblock %}
{% block heading %} <h1> Edit Assignment: </h1>{% endblock %}
{% block content %}
<form method="POST">
{% csrf_token %}
......
......@@ -2,27 +2,27 @@
{% load static %}
{% block title %} Widget's Assignments {% endblock %}
{% block heading %} Welcome to Widget's Assignments! {% endblock %}
{% block heading %} <h1> Welcome to Widget's Assignments! </h1>{% endblock %}
{% block content %}
<div class="main">
<div class="list">
<ul>
{% for assignment in assignments %}
<a href="{{ assignment.get_absolute_url }}">
<li>{{assignment.name}}</li>
{{assignment.name}} <br>
</a>
{% endfor %}
</ul>
<br>
</div>
<a href="{% url 'assignments:assignment-add' %}" class="add-btn"><i class="fa fa-plus"></i> New Assignment</a>
</div>
<button type="button">
<a href="{% url 'assignments:assignment-add' %}">New Assignment</a>
</button>
{% endblock %}
{% block footing %}
<div class="links">
<a href="/dashboard/" class="btn-primary">Dashboard -- </a>
<a href="/announcements/" class="btn-primary"> Announcements -- </a>
<a href="/forum/" class="btn-primary"> Forum -- </a>
<a href="/widget_calendar/" class="btn-primary"> Calendar </a>
<a href="/dashboard/" class="btn-primary">Dashboard </a><br>
<a href="/announcements/" class="btn-primary"> Announcements</a><br>
<a href="/forum/" class="btn-primary"> Forum </a><br>
<a href="/calendar/" class="btn-primary"> Calendar </a>
</div>
{% endblock %}
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
......@@ -3,7 +3,7 @@
{% block title %}Widget v2{% endblock %}
{% block heading %}Welcome to Widget!{% endblock %}
{% block heading %} <h1> Welcome to Widget! </h1> {% endblock %}
{% block content %}
<p>
......
......@@ -3,7 +3,7 @@
{% block title %}Edit Widget User{% endblock %}
{% block heading %}Edit Widget User:{% endblock %}
{% block heading %} <h1> Edit Widget User: </h1> {% endblock %}
{% block content %}
<form method="post">
......
File added
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
File added
......@@ -3,7 +3,7 @@
{% block title %}Widget's Forum{% endblock %}
{% block heading %}Welcome to Widget's Forum!{% endblock %}
{% block heading %}<h1> Welcome to Widget's Forum! </h1>{% endblock %}
{% block content %}
<p>
......
......@@ -23,6 +23,7 @@ POST REPLIES:<br>
{{ reply.body }}<br><br>
{% endif %}
{% endfor %}
{% endblock %}
{% block footing %}
<a href="{% url 'forum:forumpost-update' object.pk %}">
......
......@@ -3,7 +3,7 @@
{% block title %}Edit Post{% endblock %}
{% block heading %}Edit Post:{% endblock %}
{% block heading %} <h1> Edit Post: </h1> {% endblock %}
{% block content %}
<form method="post">
......
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
File added
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
File added
......@@ -4,7 +4,7 @@
{% block title %}Calendar v2{% endblock %}
{% block heading %}Widget's Calendar of Activities{% endblock %}
{% block heading %}<h1>Widget's Calendar of Activities</h1>{% endblock %}
{% block content %}
<p>
......
......@@ -2,7 +2,7 @@
{% extends 'base.html' %}
{% load static %}
{% block title %}Add Widget User{% endblock %}
{% block title %}<h1> Widget User </h1>{% endblock %}
{% block heading %}<h1>Add a new activity:</h1>{% endblock %}
......
......@@ -4,7 +4,7 @@
{% block title %}Edit Activity{% endblock %}
{% block heading %}Edit Activity:{% endblock %}
{% block heading %}<h1>Edit Activity:</h1>{% endblock %}
{% block content %}
<form method="post">
......
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