Small cleanups

This commit is contained in:
Frank Wiles
2022-05-26 16:19:47 -05:00
parent 3321cf024a
commit ef955137ae
4 changed files with 12 additions and 2 deletions

View File

@@ -145,5 +145,6 @@ cython_debug/
.github
.gitignore
deployed_static
static_deploy
Makefile
README.md

1
.gitignore vendored
View File

@@ -142,4 +142,5 @@ cython_debug/
### Forum Specific ###
.env
deployed_static
static_deploy
python.log

View File

@@ -56,7 +56,7 @@
<a href="#" class="font-medium text-gray-500 hover:text-gray-900">Review Process</a>
<a href="#" class="font-medium text-gray-500 hover:text-gray-900">Forums</a>
<a href="/forum/" class="font-medium text-gray-500 hover:text-gray-900">Forums</a>
<a href="#" class="font-medium text-gray-500 hover:text-gray-900">News</a>

View File

@@ -1,3 +1,11 @@
from django.contrib import admin
# Register your models here.
from . import models
@admin.register(models.Version)
class VersionAdmin(admin.ModelAdmin):
list_display = ["name", "release_date"]
search_fields = [
"name",
]