formated and linted
This commit is contained in:
parent
d51190a1f7
commit
352233887f
2 changed files with 37 additions and 37 deletions
|
@ -14,10 +14,12 @@
|
|||
<tbody>
|
||||
{% for bird in birds %}
|
||||
<tr>
|
||||
<td><a href="{% url 'bird_single' bird.id %}">{{bird.bird}}</a></td>
|
||||
<td>{{bird.place}}</td>
|
||||
<td>{{bird.created}}</td>
|
||||
<td>{{bird.rescuer}}</td>
|
||||
<td>
|
||||
<a href="{% url 'bird_single' bird.id %}">{{ bird.bird }}</a>
|
||||
</td>
|
||||
<td>{{ bird.place }}</td>
|
||||
<td>{{ bird.created }}</td>
|
||||
<td>{{ bird.rescuer }}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
|
|
|
@ -5,37 +5,35 @@
|
|||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
|
||||
{% comment %} favicon {% endcomment %}
|
||||
<link rel="shortcut icon" href="{% static 'img/favicon.ico' %}" type="image/x-icon">
|
||||
|
||||
<link rel="shortcut icon"
|
||||
href="{% static 'img/favicon.ico' %}"
|
||||
type="image/x-icon">
|
||||
{% comment %} css {% endcomment %}
|
||||
<link rel="stylesheet" href="{% static 'css/style.css' %}">
|
||||
<link rel="stylesheet" href="{% static 'css/bootstrap.min.css' %}">
|
||||
|
||||
{% comment %} possible dynamic header {% endcomment %}
|
||||
<title>{% block head_title %}Fallen Birdy{% endblock %}</title>
|
||||
|
||||
<title>
|
||||
{% block head_title %}Fallen Birdy{% endblock head_title %}
|
||||
</title>
|
||||
{% comment %} custom header {% endcomment %}
|
||||
{% block header %} {% endblock header %}
|
||||
{% block header %}
|
||||
{% endblock header %}
|
||||
</head>
|
||||
<body>
|
||||
<!--navbar-->
|
||||
{% block navbar %}
|
||||
{% include 'partials/_navbar.html' %}
|
||||
{% include "partials/_navbar.html" %}
|
||||
{% endblock navbar %}
|
||||
|
||||
<!--content-->
|
||||
<div class="container">
|
||||
{% block content %}
|
||||
{% endblock content %}
|
||||
</div>
|
||||
|
||||
<!--footer-->
|
||||
{% block footer %}
|
||||
{% include 'partials/_footer.html' %}
|
||||
{% include "partials/_footer.html" %}
|
||||
{% endblock footer %}
|
||||
|
||||
<!-- JavaScript Bundle with Popper -->
|
||||
<script src="{% static 'js/bootstrap.bundle.min.js' %}"></script>
|
||||
</body>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue