SciPost Code Repository

Skip to content
Snippets Groups Projects
Commit 2bfc0d3d authored by George Katsikas's avatar George Katsikas :goat:
Browse files

create dummy pins app

parent f5bc3a89
No related branches found
No related tags found
No related merge requests found
...@@ -132,6 +132,7 @@ INSTALLED_APPS = [ ...@@ -132,6 +132,7 @@ INSTALLED_APPS = [
"ontology", "ontology",
"organizations", "organizations",
"petitions", "petitions",
"pins",
"preprints", "preprints",
"proceedings", "proceedings",
"production", "production",
......
__copyright__ = "Copyright © Stichting SciPost (SciPost Foundation)"
__license__ = "AGPL v3"
from django.contrib import admin
# Register your models here.
__copyright__ = "Copyright © Stichting SciPost (SciPost Foundation)"
__license__ = "AGPL v3"
from django.apps import AppConfig
class PinsConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField"
name = "pins"
__copyright__ = "Copyright © Stichting SciPost (SciPost Foundation)"
__license__ = "AGPL v3"
from django.db import models
# Create your models here.
__copyright__ = "Copyright © Stichting SciPost (SciPost Foundation)"
__license__ = "AGPL v3"
from django.test import TestCase
# Create your tests here.
__copyright__ = "Copyright © Stichting SciPost (SciPost Foundation)"
__license__ = "AGPL v3"
from django.shortcuts import render
# Create your views here.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment