mirror of
https://github.com/boostorg/website-v2.git
synced 2026-01-19 04:42:17 +00:00
Small cleanups
This commit is contained in:
@@ -145,5 +145,6 @@ cython_debug/
|
||||
.github
|
||||
.gitignore
|
||||
deployed_static
|
||||
static_deploy
|
||||
Makefile
|
||||
README.md
|
||||
|
||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -142,4 +142,5 @@ cython_debug/
|
||||
### Forum Specific ###
|
||||
.env
|
||||
deployed_static
|
||||
static_deploy
|
||||
python.log
|
||||
|
||||
@@ -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>
|
||||
|
||||
|
||||
@@ -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",
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user