Skip to content

Commit

Permalink
resolve merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
rlconley committed Sep 1, 2021
2 parents 24d95d3 + 7b9585b commit 739c1a6
Show file tree
Hide file tree
Showing 16 changed files with 15 additions and 586 deletions.
Binary file removed .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -2,7 +2,7 @@

### This is a Django practice app that will render bios and work samples for the class

### TODO for each student

- Remember to work in a branch
` git checkout -b <branch name>`
- Create a url, view, and template specific to you.
Expand Down
2 changes: 0 additions & 2 deletions core/settings.py
Expand Up @@ -11,7 +11,6 @@
"""

from pathlib import Path
import os

# Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR = Path(__file__).resolve().parent.parent
Expand Down Expand Up @@ -121,7 +120,6 @@
# https://docs.djangoproject.com/en/3.2/howto/static-files/

STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'static')

# Default primary key field type
# https://docs.djangoproject.com/en/3.2/ref/settings/#default-auto-field
Expand Down
5 changes: 0 additions & 5 deletions core/urls.py
Expand Up @@ -15,13 +15,8 @@
"""
from django.contrib import admin
from django.urls import path, include
from students import views
from django.contrib.staticfiles.urls import staticfiles_urlpatterns

urlpatterns = [
path('admin/', admin.site.urls),
path('accounts/', include('registration.backends.simple.urls')),
path('crodri/', views.clarissa_page, name='clarissa_page')
]

urlpatterns += staticfiles_urlpatterns()
Binary file removed students/.DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion students/models.py
Expand Up @@ -6,4 +6,4 @@ class User(AbstractUser):
name = models.CharField(max_length=200, blank=True, null=True)
email = models.EmailField(blank=True, null=True)
phone = models.CharField(blank=True, null=True, max_length=14)
skills = models.TextField(blank=True, null=True)
skills = models.TextField(blank=True, null=True)
Binary file removed students/static/.DS_Store
Binary file not shown.
262 changes: 0 additions & 262 deletions students/static/css/index.scss

This file was deleted.

0 comments on commit 739c1a6

Please sign in to comment.