Jonas Winkler
2d2ad9156d
bugfix
2018-09-11 20:45:36 +02:00
Jonas Winkler
1c8576cfb9
mode change
2018-09-06 12:00:01 +02:00
Jonas Winkler
62934063a4
fixed merge error
2018-09-06 10:15:15 +02:00
Jonas Winkler
d725f20505
Merge branch 'dev' into machine-learning
2018-09-06 00:29:41 +02:00
Jonas Winkler
069249cc0a
Merge branch 'master' into dev
2018-09-06 00:28:58 +02:00
Jonas Winkler
582e9c5cb4
Fixed a few things
2018-09-05 12:43:11 +02:00
Jonas Winkler
9d4155a907
removed matching model fields, automatic classifier reloading, added autmatic_classification field to matching model
2018-09-04 18:40:26 +02:00
Jonas Winkler
5a63125e04
Merge remote-tracking branch 'upstream/master'
2018-09-04 16:02:48 +02:00
Jonas Winkler
c50c517928
Implemented the classifier model, including automatic tagging of new documents
2018-09-04 14:39:55 +02:00
Daniel Quinn
7d2d3901bc
Merge @dadosch's changes & fix dependency conflicts
2018-09-02 21:06:40 +01:00
dadosch
1e0d32063e
make pycodestyle happy...
2018-08-31 00:17:48 +02:00
dadosch
bdbc68f747
add fix for messed up html at reminders, thanks to @brookst
2018-08-31 00:05:07 +02:00
Jonas Winkler
93a4a599ce
- added recent correspondents filter
...
- sortable document_count fields
- added last correspondence field to CorrespondentAdmin
2018-08-28 15:42:39 +02:00
Stéphane Brunner
0187fc00fc
Better interface when we have many tags
2018-08-26 14:20:07 +02:00
dadosch
91eee0b84a
improved codestyle, go back to == in requirements
2018-08-24 21:52:27 +02:00
dadosch
218e43fdf8
django v2 compatible: tests needed
2018-08-24 21:31:43 +02:00
Jonas Winkler
11b4e56790
Added document type
2018-08-24 13:45:15 +02:00
Jonas Winkler
ba90fbabae
Merge branch 'ui-improvements' into dev
2018-07-16 20:56:49 +02:00
Jonas Winkler
4ede97d146
Different way to get the changelist.
2018-07-16 18:35:01 +02:00
Jonas Winkler
a01294f0d0
Merge branch 'ui-improvements' into dev
2018-07-16 18:19:05 +02:00
Jonas Winkler
c69546d299
bugfix
2018-07-16 18:01:27 +02:00
Jonas Winkler
6c1e157b24
Merge branch 'ui-improvements' into dev
2018-07-16 16:09:41 +02:00
Jonas Winkler
138b4c8833
Added 'save and edit next' functionality
2018-07-16 16:08:51 +02:00
Jonas Winkler
78b73f5edc
Merge branch 'ui-improvements' into dev
2018-07-15 13:41:49 +02:00
Jonas Winkler
eec396dcc3
added document viewers on document change form for easier editing of metadata, supports pdf, png, jpg
2018-07-14 23:05:28 +02:00
Jonas Winkler
a34e037089
Merge branch 'master' into ui-improvements
2018-07-13 11:24:19 +02:00
Jonas Winkler
017c75605b
Merge branch 'ui-improvements' into dev
2018-07-11 15:07:30 +02:00
Jonas Winkler
a3d78d26ef
Moved actions to separate file
2018-07-11 13:02:18 +02:00
Jonas Winkler
1794619563
Merge branch 'master' into workflow-improvements
2018-07-10 15:53:38 +02:00
Jonas Winkler
61f424e52e
Merge remote-tracking branch 'upstream/master'
2018-07-10 15:46:46 +02:00
Jonas Winkler
692fdd5b54
Added actions to modify tags and correspondents on multiple documents
2018-07-10 15:39:24 +02:00
Jonas Winkler
7076bcb510
Show document serial number on change list
2018-07-06 18:04:31 +02:00
Jonas Winkler
88b461ad3c
automatically update documents whenever a tag or correspondent is changed (this should make the document_retagger and document_correspondent managers somewhat obsolete (?)
2018-07-06 13:51:50 +02:00
Enno Lohmeier
57f97364b3
fix code style issue
2018-07-05 13:10:08 +02:00
Enno Lohmeier
dc95c040fb
add document count column for tags and correspondents
2018-07-05 13:01:18 +02:00
Jonas Winkler
076fe98753
Updated date filter to use the drilldown feature of django
2018-07-04 17:10:56 +02:00
Jonas Winkler
78f0991fb5
Updated to Django 2
2018-07-04 17:03:59 +02:00
Erik Arvstedt
33e3277d2a
Add field 'added' to documents
...
This field indicates when the document was added to the database
2018-05-31 10:17:03 +02:00
Daniel Quinn
3ac2e32bcf
Allow the searching of documents by tag #354
2018-05-20 17:28:00 +01:00
Daniel Quinn
85fa861ce7
Remove the hard-coding of the thumbnail URL
2018-04-13 20:18:16 +01:00
Daniel Quinn
24ddc681cd
Merge pull request #256 from ddddavidmartin/add_financial_year_filter
...
Add financial year documents filter
2018-01-21 18:23:45 +01:00
David Martin
a0c054a5f6
Determine the start of the financial only for wrapping years.
...
If the financial year is from Jan to Dec there we do not need to
determine the start to see which year it falls into.
2017-08-26 19:50:57 +10:00
David Martin
82852cc01e
Store whether financial year wraps instead of re-determining it.
...
It either wraps or it does not depending on how it is set in the config.
There is no point in determining it again for each document. Instead we
simply store it as a member variable the first time we check.
2017-08-26 19:45:39 +10:00
David Martin
cef4aaab45
Take non-wrapping financial years into account.
...
The German financial year for example goes from January to December. In
those cases we simply only show the year in the overview.
2017-08-25 20:27:39 +10:00
David Martin
164efe902d
Return no filter results if financial year dates are not set.
...
This is a lot cleaner than trying to hack around whether or not the
FinancialYearFilter is part of the available filters. This way it will
show up if there are result for it and the dates are set, and it will
not if any of those conditions is not set.
2017-08-25 17:36:09 +10:00
David Martin
a82fb87e82
Add config settings to set the start and the end of the financial year.
...
Now we allow to filter for any financial year dates. Note that we also
only show the financial year filter if the dates are actually set.
2017-08-24 20:51:09 +10:00
David Martin
44f2a71f74
Add a basic financial year filter for the document overview.
...
For now we simply hardcode the dates for the AU financial years. We
simply show a list of financial years and filter the documents
accordingly.
2017-08-24 20:20:00 +10:00
maphy-psd
cf767bdd03
fix travis ci E510
...
E501 line too long (85 > 79 characters)
2017-08-20 16:18:39 +02:00
maphy-psd
fec0ff2e79
white spacing and remove var's prefix
2017-08-20 14:29:51 +02:00
maphy-psd
9a2e5fd28b
def thumbnail uses FORCE_SCRIPT_NAME
...
with this edit the tumbnails are show up..
2017-08-19 18:37:17 +02:00