mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-22 17:47:08 +03:00
Template indentation cleanup
This commit is contained in:
parent
8bbf83d3d7
commit
2b2caaf6ce
|
@ -3,19 +3,15 @@
|
||||||
{% block title %}Members{% endblock %}
|
{% block title %}Members{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
|
<h2>Users</h2>
|
||||||
|
|
||||||
<h2>Users</h2>
|
<div class="list-group">
|
||||||
|
{% for user in user_list %}
|
||||||
<div class="list-group">
|
<a href="{% url 'users:detail' user.username %}" class="list-group-item">
|
||||||
{% for user in user_list %}
|
<h4 class="list-group-item-heading">{{ user.username }}</h4>
|
||||||
<a href="{% url 'users:detail' user.username %}" class="list-group-item">
|
</a>
|
||||||
<h4 class="list-group-item-heading">{{ user.username }}</h4>
|
{% endfor %}
|
||||||
</a>
|
</div>
|
||||||
{% endfor %}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{% endblock content %}{% endraw %}
|
{% endblock content %}{% endraw %}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user