Skip to content

Commit ce09d87

Browse files
committed
Test 123
1 parent 662649a commit ce09d87

File tree

31 files changed

+33627
-198
lines changed

31 files changed

+33627
-198
lines changed

Code/renan/LCD_Simulator.py

Whitespace-only changes.

Code/renan/U

Whitespace-only changes.

Code/renan/hello_app/__init__.py

Whitespace-only changes.

Code/renan/hello_app/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.

Code/renan/hello_app/apps.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
from django.apps import AppConfig
2+
3+
4+
class HelloAppConfig(AppConfig):
5+
default_auto_field = 'django.db.models.BigAutoField'
6+
name = 'hello_app'

Code/renan/hello_app/migrations/__init__.py

Whitespace-only changes.

Code/renan/hello_app/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.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>Document</title>
8+
</head>
9+
<body>
10+
<h1>Hello {{hello}}</h1>
11+
</body>
12+
</html>

Code/renan/hello_app/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.

Code/renan/hello_app/urls.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
from django.http import HttpResponse
2+
from django.urls import path
3+
from flask import request
4+
from . import views
5+
6+
urlpatterns = [
7+
# path('bruce', views.bruce, name='bruce')
8+
9+
def say_hello(request, name):
10+
return render(request, 'hello_app/index.html', {'test':name})
11+
]

0 commit comments

Comments
 (0)