Skip to content

Commit fd1a8b2

Browse files
authored
Merge pull request #4 from Marrrco7/feature/change-searchbar-color
Changed the color of the search bar button, first merge from feature branch to develop (gitflow)
2 parents 01eb29e + 91a9c19 commit fd1a8b2

File tree

6 files changed

+4
-1
lines changed

6 files changed

+4
-1
lines changed
Binary file not shown.

Videogames_project/settings.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
import os
1313
from pathlib import Path
1414

15+
16+
1517
from django.contrib import staticfiles
1618
import environ
1719

@@ -98,6 +100,7 @@
98100
}
99101
}
100102

103+
101104
# Password validation
102105
# https://docs.djangoproject.com/en/5.1/ref/settings/#auth-password-validators
103106

Binary file not shown.
Binary file not shown.
Binary file not shown.

videogames_register/templates/videogames_register/videogame_list.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{% extends "videogames_register/base.html" %}
22

33
{% block content %}
4-
<div class="search-bar">
4+
<div class="search-bar" style = "background-color: #ba2121">
55
<form method="get" action="{% url 'videogame_list' %}">
66
<input type="text" name="query" placeholder="Search games..." class="form-control" value="{{ request.GET.query }}">
77
<button type="submit" class="btn btn-primary mt-2">Search</button>

0 commit comments

Comments
 (0)