mirror of
				https://github.com/ae-utbm/sith.git
				synced 2025-10-31 17:13:08 +00:00 
			
		
		
		
	small fix in pdf generation for operations
This commit is contained in:
		| @@ -385,7 +385,7 @@ class OperationPDFView(CanViewMixin, DetailView): | |||||||
|             target = self.object.target.get_display_name() |             target = self.object.target.get_display_name() | ||||||
|  |  | ||||||
|         response = HttpResponse(content_type='application/pdf') |         response = HttpResponse(content_type='application/pdf') | ||||||
|         response['Content-Disposition'] = 'attachment; filename="op-%d(%s_on_%s).pdf"'  %(num, ti, club_name) |         response['Content-Disposition'] = 'filename="op-%d(%s_on_%s).pdf"'  %(num, ti, club_name) | ||||||
|         p = canvas.Canvas(response) |         p = canvas.Canvas(response) | ||||||
|  |  | ||||||
|         p.setFont('DejaVu', 12) |         p.setFont('DejaVu', 12) | ||||||
| @@ -401,8 +401,7 @@ class OperationPDFView(CanViewMixin, DetailView): | |||||||
|         label = Table(labelStr, colWidths=[150], rowHeights=[20]) |         label = Table(labelStr, colWidths=[150], rowHeights=[20]) | ||||||
|  |  | ||||||
|         label.setStyle(TableStyle([ |         label.setStyle(TableStyle([ | ||||||
|                                 ('ALIGN',(0,0),(-1,-1),'CENTER'), |                                 ('ALIGN',(0,0),(-1,-1),'RIGHT'), | ||||||
|                                 ('BOX', (0,0), (-1,-1), 0.25, colors.black), |  | ||||||
|                                 ])) |                                 ])) | ||||||
|         w, h = label.wrapOn(label, 0, 0) |         w, h = label.wrapOn(label, 0, 0) | ||||||
|         label.drawOn(p, width-180, height) |         label.drawOn(p, width-180, height) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user