Commit 620157be authored by Agu Syquia's avatar Agu Syquia

Created authors.html

Template rendered by the AuthorsView class
parent f131498d
{% extends 'base.html' %}
{% load static%}
{% block title %}My Favorite Authors{% endblock %}
{% block content %}
<h1>Agu's Favorite Authors:</h1>
{% for object in object_list %}
<a href="{{ object.get_absolute_url }}">{{ object.first_name }} {{ object.last_name}}<br></a>
{% endfor %}
<br>
<a href="/home">Home</a> <a href="/books">Books</a>
{% 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