Skip to content

Commit

Permalink
Made significance field visible (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
pwhipp committed Nov 13, 2014
1 parent 9af7217 commit eb408f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions docmeta/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ class DocumentAdmin(admin.ModelAdmin):
'fields': ('date_received',
'receiver',
'notes',
'significance',
'distribution',
'bibtex_entry_type',
'cccs_entry_type',
Expand Down
1 change: 1 addition & 0 deletions docmeta/templates/docmeta/document_detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ <h3 class="panel-title" data-toggle="collapse" data-parent="#document_accordion"
<tbody>
<tr><th>Date Received</th><td>{{ document.date_received | date }}</td></tr>
<tr><th>Receiver</th><td>{{ document.user.first_name }} {{ document.user.last_name }}</td></tr>
<tr><th>Significance</th><td>{{ document.significance|mkdown }}</td></tr>
<tr><th>Notes</th><td>{{ document.notes|mkdown }}</td></tr>
<tr><th>Distribution</th><td>{{ document.distribution.name }}</td></tr>
<tr><th>BibTeX Entry Type</th><td>{{ document.bibtex_entry_type.name }}</td></tr>
Expand Down

0 comments on commit eb408f9

Please sign in to comment.