11 lines
266 B
Python
11 lines
266 B
Python
""" Context processors """
|
|
|
|
from . import models
|
|
|
|
|
|
def sidebar_years(req):
|
|
avail_years = models.PublicationYear.objects.all()
|
|
publi_years = [year for year in avail_years if len(year.publis()) > 0]
|
|
return {
|
|
'publication_years': publi_years,
|
|
}
|