So on my website I want to allow people to search through people who have registered for an account. The goal of this code is to try to sort through all matching usernames, first_names, and last_names. The problem is, my if statements won't seem to evaluate the way they should in my templates. For example:
I would like to first evaluate if q matches to username, first_name, and last_name,
then evaluate if q= username and last_name and not first_name,
then q= username=first_name and not last_name,
then q=username and not first_name or last_name,
then q= first_name and last_name and not username,
then q=last_name but not username or first_name,
and finally q=first_name and not username or last_name.
I created several test users including ones with the following information:
username=testuser1, first_name=Jason, last_name=Smith username=newperson, first_name=frank, last_name=testuser2
so if I do a search, for example, for "testuser", the results would show
Username:testuser1 Name: Jason Smith and it would state that "testuser", q, was in the username, first_name, and last_name. The other user i created, "newperson" also doesn't show up under the search results. However if i search tesuser2, newperson will show up, but it will state that "testuser2" is the firstname, when i set it up as the last name. Here is my code:
#views.py
def search_people(request):
errors1 = []
if 'q' in request.GET:
q = request.GET['q']
...
#Code evlauating errors
...
else:
usernames = RegisterProfile.objects.filter(user__username__icontains=q)
last_names = RegisterProfile.objects.filter(last_name__icontains=q)
first_names = RegisterProfile.objects.filter(first_name__icontains=q)
...
#search_results.html
{% if usernames or first_names or last_names %}
<p>The following members matched your search results:</p>
{% if usernames and first_names and last_names %}
{% for username in usernames %}
<li>Username:{{ username.user.username }} First Name: {{ username.user.get_profile.first_name }} {{ username.user.get_profile.last_name }}</li>
<li>q is in all three</li>
{% endfor %}
{% endif %}
{% if usernames and last_names and not first_names %}
{% for username in usernames %}
<li>Username:{{ username.user.username }} First Name: {{ username.user.get_profile.first_name }} {{ username.user.get_profile.last_name }}</li>
<li>q is in username and last name</li>
{% endfor %}
{% endif %}
{% if usernames and first_names and not last_names %}
{% for username in usernames %}
<li>Username:{{ username.user.username }} First Name: {{ username.user.get_profile.first_name }} {{ username.user.get_profile.last_name }}</li>
<li>q is in username and first name</li>
{% endfor %}
{% endif %}
{% if usernames and not first_names %}
{% if not last_names %}
{% for username in usernames %}
<li>Username:{{ username.user.username }} First Name: {{ username.user.get_profile.first_name }} {{ username.user.get_profile.last_name }}</li>
<li>q is only in username</li>
{% endfor %}
{% endif %}
{% endif %}
{% if last_names and first_names and not usernames %}
{% for last_name in last_names %}
<li>Username:{{ last_name.user.username }} First Name: {{ last_name.user.get_profile.first_name }} {{ last_name.user.get_profile.last_name }}</li>
<li>q is in first and last name</li>
{% endfor %}
{% endif %}
{% if last_names and not first_names %}
{% if not usernames %}
{% for last_name in last_names %}
<li>Username:{{ last_name.user.username }} First Name: {{ last_name.user.get_profile.first_name }} {{ last_name.user.get_profile.last_name }}</li>
<li>q is only in last name</li>
{% endfor %}
{% endif %}
{% endif %}
{% if first_names and not last_names %}
{% if not usernames %}
{% for first_name in first_names %}
<li>Username:{{ first_name.user.username }} First Name: {{ first_name.user.get_profile.first_name }} {{ first_name.user.get_profile.last_name }}</li>
<li>q is only in first name</li>
{% endfor %}
{% endif %}
{% endif %}
{% endif %}
I know this is long, and might not be the best way to do it, but I am open to any advice and appreciate any help. Thanks in advance.