Skip to content
This repository has been archived by the owner on Oct 22, 2019. It is now read-only.

Commit

Permalink
Merge pull request #527 from AmmsA/master
Browse files Browse the repository at this point in the history
Use appropriate comment tag
  • Loading branch information
swistakm committed Aug 22, 2016
2 parents 6cc0954 + 261f520 commit 2ad1826
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion demo/demo/templates/userena/profile_detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
{% block content %}


{% comment %}Dirty hack. Will use django-guardian in the future.{% endcomment %}
{# Dirty hack. Will use django-guardian in the future. #}
{% if user.username == profile.user.username %}
<ul id="profile-nav">
<li class="selected"><a href="{% url 'userena_profile_detail' user.username %}">{% trans "View profile" %}</a></li>
Expand Down
2 changes: 1 addition & 1 deletion userena/templates/userena/profile_detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
{% block content %}
<div class="white-box">
{% block profile_navigation %}
{% comment %}Dirty hack. Will use django-guardian in the future.{% endcomment %}
{# Dirty hack. Will use django-guardian in the future. #}
{% if user.username == profile.user.username %}
<ul id="box-nav">
{% block profile_navigation_items %}
Expand Down
2 changes: 1 addition & 1 deletion userena/templates/userena/signin_form.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
{{ form.non_field_errors }}
{% for field in form %}
{{ field.errors }}
{% comment %} Displaying checkboxes differently {% endcomment %}
{# Displaying checkboxes differently #}
{% if field.name == 'remember_me' %}
<p class="checkbox">
<label for="id_{{ field.name }}">{{ field }} {{ field.label }}</label>
Expand Down
2 changes: 1 addition & 1 deletion userena/templates/userena/signup_form.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
{{ form.non_field_errors }}
{% for field in form %}
{{ field.errors }}
{% comment %} Displaying checkboxes differently {% endcomment %}
{# Displaying checkboxes differently #}
{% if field.name == 'tos' %}
<p class="checkbox">
<label for="id_{{ field.name }}">{{ field }} {{ field.label }}</label>
Expand Down

0 comments on commit 2ad1826

Please sign in to comment.