Commit bc384732 authored by KaoruSawade's avatar KaoruSawade

edited dashboard.html: added links, changed title, and added add button as...

edited dashboard.html: added links, changed title, and added add button as indicated in specs; misc stylistic changes too
parent 97171c63
<p>Welcome to Widget!</p> {% extends 'base.html' %}
<p>WIDGET USERS:<br> {% load static %}
{% block title %}Widget v2{% endblock %}
{% block content %}
<h2>Welcome to Widget!</h2>
</h3>Widget Users:</h3><br>
{% for user in widgetusers %} {% for user in widgetusers %}
{{user.last_name}}, {{user.first_name}} {{user.middle_name}}: {{user.department.dept_name}}, {{user.department.home_unit}}<br> <a href="{{ user.get_absolute_url }}">{{user.last_name}}, {{user.first_name}}</a><br>
{% endfor %} {% endfor %}
<br>
<form action='create'>
<input type="submit" value="Add Widget User"/>
</form>
<a href="{% url 'announcements:pageview' %}">Announcement Board</a><br>
<a href="{% url 'forum:pageview' %}">Forum</a><br>
<a href="{% url 'assignments:pageview' %}">Assignments</a><br>
<a href="{% url 'widget_calendar:pageview' %}">Calendar</a><br>
{% 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