"addressfield/git@code.librehq.com:ots/hypha.git" did not exist on "010eb2b81f1579c1263020913f1ce51f28e97dfb"
Newer
Older
import django_tables2 as tables
from opentech.apply.funds.models import ApplicationSubmission
class DashboardTable(tables.Table):
submit_time = tables.DateColumn(verbose_name="Submitted")
page = tables.Column(verbose_name="Fund")
class Meta:
model = ApplicationSubmission
fields = ('title', 'page', 'submit_time')
template = "dashboard/tables/table.html"