You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
220 B

4 years ago
from django.shortcuts import render
3 years ago
from django.conf import settings
4 years ago
# Create your views here.
4 years ago
def index(request):
3 years ago
return render(request, 'core/links.html', {
'company': settings.COMPANY_NAME
})