10 lines
325 B
Python
10 lines
325 B
Python
from django.shortcuts import render
|
|
from rest_framework import generics
|
|
from .models import PSSM_Countries
|
|
from .serializers import PssmCountriesSerializer
|
|
|
|
# Create your views here.
|
|
|
|
class PssmCountriesListView(generics.ListAPIView):
|
|
queryset = PSSM_Countries.objects.all()
|
|
serializer_class = PssmCountriesSerializer |