Commit a8cf4d37 authored by Jan Enzo Salvador's avatar Jan Enzo Salvador

Deleted, have to refolder the html files

parent aa85603f
{% extends 'base.html' %}
{% load static %}
{% block title %} Widget's Forum {% endblock %}
{% block content %}
<h1>Welcome to Widget's Forum!</h1>
<h2>Forum posts:</h2>
<ul>
{% for forumpost in forumposts %}
<li>
<a href="{{forumpost.get_absolute_url}}">
{{ forumpost.title }} by {{ forumpost.author.firstname }} {{ forumpost.author.lastname }}
</a>
</li>
{% endfor %}
</ul>
<form action="forum/forumposts/add">
<button type="submit">New Post</button>
</form>
<li><a href="/dashboard">Dashboard</a> <br></li>
<li> <a href="/announcements">Announcements</a> <br></li>
<li> <a href="/assignments">Assignments</a> <br></li>
<li><a href="/calendar">Calendar</a> <br></li>
{% endblock %}
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