commit message

This commit is contained in:
Guy King
2020-07-29 08:15:11 +01:00
commit af3ab5adea
23 changed files with 441 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<title>Profiles</title>
<h1>Profiles</h1>
{% if profiles_list %}
<ul>
{% for profile in profiles_list %}
<li>
<a href="{% url 'profile' username=profile.user.username %}">
{{ profile.user.username }}
</a>
</li>
{% endfor %}
</ul>
{% else %}
<p>No profiles are available.</p>
{% endif %}
<div><a href="{% url 'index' %}">Home</a></div>
<div><a href="{% url 'lettings_index' %}">Lettings</a></div>