-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improved search function for printing, improved printing layout and a…
…dded printing options
- Loading branch information
Showing
12 changed files
with
145 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
from flask.ext.wtf import Form | ||
from wtforms import SubmitField | ||
from wtforms.fields.html5 import DateField | ||
|
||
from wtforms import SubmitField, StringField | ||
|
||
class RequestActionsForm(Form): | ||
datefrom = DateField('From:') | ||
dateto = DateField('To:') | ||
datefrom = StringField('From:') | ||
dateto = StringField('To:') | ||
sample = StringField('Sample:') | ||
submit = SubmitField('Submit') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
.samplename { | ||
font-size:x-large; | ||
font-weight:bold; | ||
border-bottom:3px solid #000; | ||
} | ||
|
||
.actionheader { | ||
font-size:large; | ||
border-bottom:2px solid #000; | ||
} | ||
|
||
.actionheader .date { | ||
font-weight:bold; | ||
} | ||
|
||
.actionheader .username, .actiontype { | ||
font-style:italic; | ||
} | ||
|
||
.actiondesc { | ||
} | ||
|
||
#printDestination { | ||
visibility: hidden; | ||
} | ||
|
||
@media print { | ||
body * { | ||
visibility: hidden; | ||
} | ||
#printDestination, #printDestination * { | ||
visibility: visible; | ||
} | ||
#printDestination { | ||
position: absolute; | ||
left: 0; | ||
top: 0; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.