Skip to content

Commit 154e6fa

Browse files
author
roniahmadi
committed
update
1 parent 5414d82 commit 154e6fa

File tree

10 files changed

+106
-32
lines changed

10 files changed

+106
-32
lines changed

frontend/admin.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
from django.contrib import admin
22

3-
from frontend.models import Banner, ContentTranslate, Pengumuman
3+
from frontend.models import Banner, ContentTranslate, Pengumuman, Page
44

55
# Register your models here.
66
admin.site.register(Banner)
77
admin.site.register(ContentTranslate)
88
admin.site.register(Pengumuman)
9+
admin.site.register(Page)

frontend/migrations/0006_page.py

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Generated by Django 4.1.2 on 2024-03-06 22:52
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
("frontend", "0005_pengumuman"),
10+
]
11+
12+
operations = [
13+
migrations.CreateModel(
14+
name="Page",
15+
fields=[
16+
(
17+
"id",
18+
models.BigAutoField(
19+
auto_created=True,
20+
primary_key=True,
21+
serialize=False,
22+
verbose_name="ID",
23+
),
24+
),
25+
(
26+
"page_for",
27+
models.IntegerField(
28+
choices=[(1, "Aggrement")], default=1, unique=True
29+
),
30+
),
31+
("content", models.TextField(blank=True, null=True)),
32+
("is_active", models.BooleanField(default=True)),
33+
],
34+
options={
35+
"verbose_name": "Page",
36+
"verbose_name_plural": "Page",
37+
},
38+
),
39+
]

frontend/models.py

+17
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,20 @@ class Meta:
3636

3737
def __str__(self):
3838
return self.text_pengumuman
39+
40+
41+
class Page(models.Model):
42+
COICHE_PAGE = [
43+
(1, "Aggrement"),
44+
(2, "Privacy and Policy"),
45+
]
46+
page_for = models.IntegerField(choices=COICHE_PAGE, default=1, unique=True)
47+
content = models.TextField(blank=True, null=True)
48+
is_active = models.BooleanField(default=True)
49+
50+
class Meta:
51+
verbose_name = "Page"
52+
verbose_name_plural = "Page"
53+
54+
def __str__(self):
55+
return self.COICHE_PAGE

frontend/static/styles.css

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ body {
44
.layoutmobile {
55
max-width: 450px;
66
background-color: white;
7-
height: 100vh;
87
margin-right: auto;
98
margin-left: auto;
109
}

frontend/templates/profil/profile_alamat_.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
{% load static %}
33

44
{% block content %}
5-
<div class=" mt-3 mb-4 {% if address|length > 1 %}{% else %}h-screen{% endif %} mx-5">
6-
<div class="flex flex-col border border-solid border-inherit min-h-10 flex-column p-2 rounded">
5+
<div class=" mt-3" >
6+
<div class="flex flex-col border border-solid border-inherit min-h-10 flex-column p-2 rounded mx-5">
77

88
<div class="flex flex-col gap-2">
99

frontend/view_helper.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def translater(translate_to, page, values):
1010
content = content.filter(lang=translate_to, tag_data=page)
1111
content = content.first()
1212
if not content:
13-
translator = GoogleTranslator("auto", translate_to).translate(values)
13+
translator = GoogleTranslator("id", translate_to).translate(values)
1414
content = ContentTranslate()
1515
content.lang = translate_to
1616
content.tag_data = page
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 4.1.2 on 2024-03-06 22:52
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
("profiles", "0011_alter_userwithdrawltransactionrequest_kode"),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name="userwithdrawltransactionrequest",
15+
name="kode",
16+
field=models.CharField(default="NCLRI", max_length=255),
17+
),
18+
]

templates/component/bottom_home.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% load static translater%}
2-
<nav class="h-auto bg-black sticky bottom-0 pt-4 pb-1 shadow-md">
2+
<nav class="h-auto bg-black bottom-0 pt-4 pb-1 shadow-md absolute w-[450px]">
33
{% with request.resolver_match.url_name as url_name %}
44
<ul class="flex items-center justify-evenly text-sm">
55
<li>

templates/layout.html

+10-6
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,11 @@
5454
}
5555
body{
5656
top:0 !important;
57+
-ms-overflow-style: none; /* IE and Edge */
58+
scrollbar-width: none;
59+
}
60+
::-webkit-scrollbar {
61+
display: none;
5762
}
5863
</style>
5964
{% block styles %}{% endblock %}
@@ -63,18 +68,17 @@
6368
</head>
6469

6570
<body style="background-color: aliceblue">
66-
<div class="container-mobile mx-auto bg-white">
71+
<div class="container-mobile mx-auto bg-white overflow-y-scroll scroll-smooth h-screen">
6772
{% block header %}
6873
{% include 'component/header_home.html' %}
69-
{% endblock %}
70-
74+
{% endblock %}
75+
7176
{% block content %}
72-
{% endblock %}
77+
{% endblock %}
7378

7479
{% block bottom_nav %}
7580
{% include 'component/bottom_home.html' %}
76-
{% endblock %} {% comment %} {% block header %} {% include 'component/header_home.html' %} {% endblock %} {% block content %} {% endblock %} {% block bottom_nav %} {% include 'component/bottom_home.html' %} {%
77-
endblock %} {% endcomment %}
81+
{% endblock %}
7882
</div>
7983
<!-- <div class="mybar w-full h-screen hidden" data-preset="bubble" data-pattern-size="10"></div> -->
8084
<script src="https://code.jquery.com/jquery-3.7.0.js" integrity="sha256-JlqSTELeR4TLqP0OG9dxM7yDPqX1ox/HfgiSLBj8+kM=" crossorigin="anonymous"></script>

theme/static/css/dist/styles.css

+16-20
Original file line numberDiff line numberDiff line change
@@ -2761,14 +2761,6 @@ html {
27612761
margin-top: auto;
27622762
}
27632763

2764-
.mt-2 {
2765-
margin-top: 0.5rem;
2766-
}
2767-
2768-
.mt-10 {
2769-
margin-top: 2.5rem;
2770-
}
2771-
27722764
.block {
27732765
display: block;
27742766
}
@@ -2801,10 +2793,6 @@ html {
28012793
height: 2.5rem;
28022794
}
28032795

2804-
.h-20 {
2805-
height: 5rem;
2806-
}
2807-
28082796
.h-24 {
28092797
height: 6rem;
28102798
}
@@ -2881,10 +2869,6 @@ html {
28812869
width: 2.5rem;
28822870
}
28832871

2884-
.w-20 {
2885-
width: 5rem;
2886-
}
2887-
28882872
.w-24 {
28892873
width: 6rem;
28902874
}
@@ -2917,6 +2901,10 @@ html {
29172901
width: 120px;
29182902
}
29192903

2904+
.w-\[450px\] {
2905+
width: 450px;
2906+
}
2907+
29202908
.w-fit {
29212909
width: -moz-fit-content;
29222910
width: fit-content;
@@ -3068,10 +3056,6 @@ html {
30683056
overflow: hidden;
30693057
}
30703058

3071-
.overflow-y-auto {
3072-
overflow-y: auto;
3073-
}
3074-
30753059
.overflow-y-hidden {
30763060
overflow-y: hidden;
30773061
}
@@ -3084,6 +3068,10 @@ html {
30843068
overflow-y: scroll;
30853069
}
30863070

3071+
.scroll-smooth {
3072+
scroll-behavior: smooth;
3073+
}
3074+
30873075
.whitespace-nowrap {
30883076
white-space: nowrap;
30893077
}
@@ -3104,6 +3092,10 @@ html {
31043092
border-radius: 0.5rem;
31053093
}
31063094

3095+
.rounded-sm {
3096+
border-radius: 0.125rem;
3097+
}
3098+
31073099
.rounded-xl {
31083100
border-radius: 0.75rem;
31093101
}
@@ -3516,6 +3508,10 @@ html {
35163508
font-weight: 500;
35173509
}
35183510

3511+
.font-normal {
3512+
font-weight: 400;
3513+
}
3514+
35193515
.font-semibold {
35203516
font-weight: 600;
35213517
}

0 commit comments

Comments
 (0)