Skip to content

Commit adfc617

Browse files
committed
Add Resume
1 parent a5948d5 commit adfc617

File tree

8 files changed

+25
-0
lines changed

8 files changed

+25
-0
lines changed

resume/David_Edwards_Resume.docx

31.9 KB
Binary file not shown.

resume/__init__.py

Whitespace-only changes.

resume/admin.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from django.contrib import admin
2+
3+
# Register your models here.

resume/apps.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
from django.apps import AppConfig
2+
3+
4+
class ResumeConfig(AppConfig):
5+
name = 'resume'

resume/migrations/__init__.py

Whitespace-only changes.

resume/models.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from django.db import models
2+
3+
# Create your models here.

resume/tests.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from django.test import TestCase
2+
3+
# Create your tests here.

resume/views.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
from django.shortcuts import render
2+
3+
# Create your views here.
4+
from django.shortcuts import render
5+
6+
# Create your views here.
7+
from django.http import HttpResponse
8+
9+
10+
def index(request):
11+
return HttpResponse("Please, see my <a href="David_Edwards_Resume"Resume.")

0 commit comments

Comments
 (0)