10 lines
No EOL
230 B
HTML
10 lines
No EOL
230 B
HTML
{% extends "base.html" %}
|
|
{% load static %}
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="col-lg-8 mb-3">
|
|
<h3>{{ bird.name }}</h3>
|
|
<p>{{ bird.description|safe }}</p>
|
|
</div>
|
|
</div>
|
|
{% endblock content %} |