Commit b0d4a9e9 authored by Julia Anishka's avatar Julia Anishka

applied css to style announcements.html

parent 07e9a5c9
{% extends 'base.html' %} {% extends 'base.html' %}
{% load static %}
{% block stylesheets %}
<link rel="stylesheet" href="{% static 'announcements.css' %}">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
{% endblock %}
{% block title %} Widget's Announcement Board {% endblock %} {% block title %} Widget's Announcement Board {% endblock %}
{% block header %} {% block header %}
<h1> Welcome to Widget's Announcement Board! </h1> <h1> Welcome to Widget's Announcement Board! </h1>
{% endblock %} {% endblock %}
{% block body %}
{% block content %} {% block content %}
<div class="main">
<div class="list">
<h2> Announcements: </h2><br> <h2> Announcements: </h2><br>
<div> <div>
<ul> <ul>
{% for announcement in announcements %} {% for announcement in announcements %}
<li> <li>
<a href="{{ announcement.get_absolute_url }}"> <a href="{{ announcement.get_absolute_url }}">
{{ announcement.title }} by {{ announcement.author.first_name }} {{ announcement.author.last_name }} {{ announcement.title }} by {{ announcement.author.first_name }} {{ announcement.author.last_name }}
</a> </a>
</li> </li>
{% endfor %} {% endfor %}
</ul> </ul>
</div> </div>
<div>
<a href="/announcements/add/"> New Announcement </a>
</div> </div>
<a href="/announcements/add/"> New Announcement </a>
</div>
{% endblock %}
<div class="links">
<a href="/dashboard/"> Dashboard </a> <a href="/dashboard/"> Dashboard </a>
<a href="/forum/"> Forum </a> <a href="/forum/"> Forum </a>
<a href="/assignments/"> Assignments </a> <a href="/assignments/"> Assignments </a>
<a href="/calendar/"> Calendar </a> <a href="/calendar/"> Calendar </a>
</div>
{% endblock %} {% endblock %}
\ No newline at end of file
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