Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Boodle
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Martina Therese R. Reyes
Boodle
Commits
8a91cc17
Commit
8a91cc17
authored
Mar 12, 2022
by
Martina Therese R. Reyes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made migrations, added footer to base.html and modified index.html
parent
0cf3cd65
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
55 additions
and
5 deletions
+55
-5
styles.css
boodlesite/static/css/styles.css
+14
-2
base.html
boodlesite/templates/base.html
+12
-2
index.html
boodlesite/templates/index.html
+1
-1
0001_initial.py
main/migrations/0001_initial.py
+28
-0
No files found.
boodlesite/static/css/styles.css
View file @
8a91cc17
...
...
@@ -5,6 +5,7 @@ body {
height
:
100%
;
font-size
:
11pt
;
color
:
#3d3838
;
background-color
:
black
;
}
.carousel-item
img
{
...
...
@@ -65,14 +66,24 @@ nav {
/* nav bar end */
.footer
{
.footer
-basic
{
background-color
:
black
;
color
:
#f8edeb
;
display
:
flex
;
justify-content
:
center
;
}
.footer
p
{
flex
:
0
1
800px
;
padding
:
8px
24px
;}
.copyright
{
flex
:
0
1
800px
;
padding
:
8px
24px
;
}
/* homepage about section */
.about-image
{
display
:
flex
;
height
:
300px
;
width
:
200px
;
}
/* homepage happening now */
...
...
@@ -97,6 +108,7 @@ nav {
background-color
:
#ffc2c2
;
padding
:
8px
;
border
:
2px
dotted
black
;
margin
:
32px
;
}
.event
{
...
...
boodlesite/templates/base.html
View file @
8a91cc17
...
...
@@ -50,8 +50,18 @@
{% block scripts %}{% endblock %}
<div
class=
"footer"
>
<p>
Website created by the OMENgineers
</p>
<div
class=
"footer-basic"
>
<footer>
<div
class=
"social"
><a
href=
"#"
><i
class=
"icon ion-social-instagram"
></i></a><a
href=
"#"
><i
class=
"icon ion-social-snapchat"
></i></a><a
href=
"#"
><i
class=
"icon ion-social-twitter"
></i></a><a
href=
"#"
><i
class=
"icon ion-social-facebook"
></i></a></div>
<ul
class=
"list-inline"
>
<li
class=
"list-inline-item"
><a
href=
"/"
>
Home
</a></li>
<li
class=
"list-inline-item"
><a
href=
"#"
>
Services
</a></li>
<li
class=
"list-inline-item"
><a
href=
"#"
>
About
</a></li>
<li
class=
"list-inline-item"
><a
href=
"#"
>
Terms
</a></li>
<li
class=
"list-inline-item"
><a
href=
"#"
>
Privacy Policy
</a></li>
</ul>
<p
class=
"copyright"
>
Omengineers © 2022
</p>
</footer>
</div>
<script
src=
"https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity=
"sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin=
"anonymous"
></script>
...
...
boodlesite/templates/index.html
View file @
8a91cc17
...
...
@@ -40,7 +40,7 @@
<div
class=
"col"
>
<p>
Boodle was founded by 4 amaing talented software engineers, who are college studyents based in Metro Manila who go to Ateneo de Manila University.
</p>
</div>
<div
class=
"col"
>
<div
class=
"col
about-image
"
>
<img
src=
"../static/media/dancinginthekitchen.jpg"
>
</div>
</div>
...
...
main/migrations/0001_initial.py
0 → 100644
View file @
8a91cc17
# Generated by Django 4.0.3 on 2022-03-12 07:26
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
initial
=
True
dependencies
=
[
]
operations
=
[
migrations
.
CreateModel
(
name
=
'Auction'
,
fields
=
[
(
'auctionid'
,
models
.
AutoField
(
primary_key
=
True
,
serialize
=
False
)),
(
'title'
,
models
.
CharField
(
max_length
=
255
)),
(
'info'
,
models
.
CharField
(
max_length
=
255
)),
(
'auctionstart'
,
models
.
DateTimeField
()),
(
'auctionend'
,
models
.
DateTimeField
()),
],
options
=
{
'db_table'
:
'auction'
,
'managed'
:
False
,
},
),
]
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment