init profiles
This commit is contained in:
		
							
								
								
									
										0
									
								
								django/trancendence/profiles/__init__.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										0
									
								
								django/trancendence/profiles/__init__.py
									
									
									
									
									
										Normal file
									
								
							
							
								
								
									
										3
									
								
								django/trancendence/profiles/admin.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								django/trancendence/profiles/admin.py
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,3 @@
 | 
			
		||||
from django.contrib import admin
 | 
			
		||||
 | 
			
		||||
# Register your models here.
 | 
			
		||||
							
								
								
									
										6
									
								
								django/trancendence/profiles/apps.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										6
									
								
								django/trancendence/profiles/apps.py
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,6 @@
 | 
			
		||||
from django.apps import AppConfig
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class ProfilesConfig(AppConfig):
 | 
			
		||||
    default_auto_field = 'django.db.models.BigAutoField'
 | 
			
		||||
    name = 'profiles'
 | 
			
		||||
							
								
								
									
										0
									
								
								django/trancendence/profiles/migrations/__init__.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										0
									
								
								django/trancendence/profiles/migrations/__init__.py
									
									
									
									
									
										Normal file
									
								
							
							
								
								
									
										3
									
								
								django/trancendence/profiles/models.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								django/trancendence/profiles/models.py
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,3 @@
 | 
			
		||||
from django.db import models
 | 
			
		||||
 | 
			
		||||
# Create your models here.
 | 
			
		||||
							
								
								
									
										3
									
								
								django/trancendence/profiles/tests.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								django/trancendence/profiles/tests.py
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,3 @@
 | 
			
		||||
from django.test import TestCase
 | 
			
		||||
 | 
			
		||||
# Create your tests here.
 | 
			
		||||
							
								
								
									
										7
									
								
								django/trancendence/profiles/urls.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										7
									
								
								django/trancendence/profiles/urls.py
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,7 @@
 | 
			
		||||
from django.urls import path
 | 
			
		||||
 | 
			
		||||
from . import views
 | 
			
		||||
 | 
			
		||||
urlpatterns = [
 | 
			
		||||
    path("<str:uuid>", views.ProfilePage.as_view(), name="profile_page"),
 | 
			
		||||
]
 | 
			
		||||
							
								
								
									
										3
									
								
								django/trancendence/profiles/views.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								django/trancendence/profiles/views.py
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,3 @@
 | 
			
		||||
from django.shortcuts import render
 | 
			
		||||
 | 
			
		||||
# Create your views here.
 | 
			
		||||
		Reference in New Issue
	
	Block a user