Commit 38c220a3 authored by Julliana Zarah C. Cruz's avatar Julliana Zarah C. Cruz

Merge branch 'cruz/announcements'

parents a0029ef6 9a3f0881
{% extends "announcements/base.html" %}
{% load static %}
{% block title %}Announcement{% endblock %}
{% block styles %}
<link rel="stylesheet" href="{% static 'css/style.css' %}">
{% endblock %}
{% block content %}
<h1>Announcement Board</h1>
<body>
<p>Important Announcements:</p>
<ol style="list-style-type:circle">
<ol>
{% for announcement in all_announcements %}
<p>
<a href = {% url 'announcements:details' announcement.id %}>
......
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css">
<title>{% block title %}{% endblock %}</title>
{% block styles %}{% endblock %}
{% block styles %}
{% endblock %}
</head>
<body>
<div id="content">
{% block content %}{% endblock %}
</div>
......
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