Skip to content

Commit 03e2ba0

Browse files
committed
done
1 parent 686eb39 commit 03e2ba0

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

website/models.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2333,6 +2333,7 @@ class Meta:
23332333
def __str__(self):
23342334
return f"{self.app_name} (Banned in {self.country_name})"
23352335

2336+
23362337
class Notification(models.Model):
23372338
user = models.ForeignKey(User, on_delete=models.CASCADE, related_name="notifications")
23382339
message = models.TextField()
@@ -2358,4 +2359,4 @@ def soft_delete(self):
23582359
self.save()
23592360

23602361
class Meta:
2361-
ordering = ["is_read", "-created_at"]
2362+
ordering = ["is_read", "-created_at"]

website/templates/banned_apps.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ <h3 id="countryName" class="text-xl font-semibold mb-2"></h3>
141141
}).addTo(map);
142142
}) .catch(error => console.error('Error loading GeoJSON:', error));
143143
}
144-
144+
145145
// Calculate positions for multiple markers
146146
function calculateMarkerPositions(center, count) {
147147
const positions = [];

0 commit comments

Comments
 (0)