Added more projects and upload path for images
This commit is contained in:
parent
c34e1b0725
commit
1ef9bdce2b
@ -125,6 +125,10 @@ USE_TZ = True
|
|||||||
|
|
||||||
STATIC_URL = 'static/'
|
STATIC_URL = 'static/'
|
||||||
|
|
||||||
|
STATICFILES_DIRS = [
|
||||||
|
BASE_DIR / "static",
|
||||||
|
]
|
||||||
|
|
||||||
# Default primary key field type
|
# Default primary key field type
|
||||||
# https://docs.djangoproject.com/en/4.1/ref/settings/#default-auto-field
|
# https://docs.djangoproject.com/en/4.1/ref/settings/#default-auto-field
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@ class Project(models.Model):
|
|||||||
title = models.CharField(max_length=100)
|
title = models.CharField(max_length=100)
|
||||||
description = models.TextField(default="No description added")
|
description = models.TextField(default="No description added")
|
||||||
status = models.IntegerField(default=ProjectStatus.RUNNING)
|
status = models.IntegerField(default=ProjectStatus.RUNNING)
|
||||||
image = models.ImageField(null=True, blank=True)
|
image = models.ImageField(upload_to="static/project_images/", null=True, blank=True)
|
||||||
rtd_url = models.CharField(max_length=200, null=True, blank=True)
|
rtd_url = models.CharField(max_length=200, null=True, blank=True)
|
||||||
url = models.CharField(max_length=200, null=True, blank=True)
|
url = models.CharField(max_length=200, null=True, blank=True)
|
||||||
visible = models.BooleanField(default=False)
|
visible = models.BooleanField(default=False)
|
||||||
|
@ -5,4 +5,4 @@ from .models import Project
|
|||||||
|
|
||||||
class ProjectView(viewsets.ModelViewSet):
|
class ProjectView(viewsets.ModelViewSet):
|
||||||
serializer_class = ProjectSerializer
|
serializer_class = ProjectSerializer
|
||||||
queryset = Project.objects.all()
|
queryset = Project.objects.all()
|
||||||
|
BIN
herreweb_backend/static/GHIDRA_1.png
Normal file
BIN
herreweb_backend/static/GHIDRA_1.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 185 KiB |
BIN
herreweb_backend/static/project_images/GHIDRA_1.png
Normal file
BIN
herreweb_backend/static/project_images/GHIDRA_1.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 185 KiB |
BIN
herreweb_backend/static/project_images/GHIDRA_1_nL03hOP.png
Normal file
BIN
herreweb_backend/static/project_images/GHIDRA_1_nL03hOP.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 185 KiB |
BIN
herreweb_backend/static/project_images/logo-600w.png
Normal file
BIN
herreweb_backend/static/project_images/logo-600w.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 86 KiB |
BIN
herreweb_backend/static/project_images/tallies.jpeg
Normal file
BIN
herreweb_backend/static/project_images/tallies.jpeg
Normal file
Binary file not shown.
After Width: | Height: | Size: 86 KiB |
Loading…
Reference in New Issue
Block a user