31 lines
851 B
Python
31 lines
851 B
Python
from __future__ import absolute_import
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from project_tools.api import register_tool
|
|
from navigation.api import register_model_list_columns, register_links
|
|
from common.utils import encapsulate
|
|
|
|
from .models import History
|
|
from .widgets import history_entry_summary, history_entry_type_link
|
|
from .links import history_list, history_details
|
|
|
|
register_tool(history_list)
|
|
|
|
register_model_list_columns(History, [
|
|
{
|
|
'name': _(u'date and time'),
|
|
'attribute': 'datetime'
|
|
},
|
|
{
|
|
'name': _(u'type'),
|
|
'attribute': encapsulate(lambda entry: history_entry_type_link(entry))
|
|
},
|
|
{
|
|
'name': _(u'summary'),
|
|
'attribute': encapsulate(lambda entry: unicode(entry.get_processed_summary()))
|
|
}
|
|
])
|
|
|
|
register_links(History, [history_details])
|