|
@ -14,11 +14,18 @@ Popup: |
|
|
title: _('Invoice') if popup.is_invoice else _('Request') |
|
|
title: _('Invoice') if popup.is_invoice else _('Request') |
|
|
BoxLayout: |
|
|
BoxLayout: |
|
|
orientation: 'vertical' |
|
|
orientation: 'vertical' |
|
|
GridLayout: |
|
|
|
|
|
spacing: '10dp' |
|
|
|
|
|
padding: '10dp' |
|
|
padding: '10dp' |
|
|
|
|
|
ScrollView: |
|
|
|
|
|
GridLayout: |
|
|
|
|
|
cols: 1 |
|
|
height: self.minimum_height |
|
|
height: self.minimum_height |
|
|
|
|
|
size_hint_y: None |
|
|
|
|
|
GridLayout: |
|
|
cols: 2 |
|
|
cols: 2 |
|
|
|
|
|
size_hint_y: None |
|
|
|
|
|
height: self.minimum_height |
|
|
|
|
|
spacing: '10dp' |
|
|
|
|
|
padding: '10dp' |
|
|
TopLabel: |
|
|
TopLabel: |
|
|
text: _('Requestor') if popup.is_invoice else _('Address') |
|
|
text: _('Requestor') if popup.is_invoice else _('Address') |
|
|
TopLabel: |
|
|
TopLabel: |
|
@ -44,10 +51,13 @@ Popup: |
|
|
TopLabel: |
|
|
TopLabel: |
|
|
text: root.status |
|
|
text: root.status |
|
|
|
|
|
|
|
|
|
|
|
TopLabel: |
|
|
|
|
|
text: _('Outputs') if popup.is_invoice else '' |
|
|
OutputList: |
|
|
OutputList: |
|
|
id: output_list |
|
|
id: output_list |
|
|
TopLabel: |
|
|
TopLabel: |
|
|
id: txid_label |
|
|
id: txid_label |
|
|
|
|
|
|
|
|
Widget: |
|
|
Widget: |
|
|
size_hint: 1, 0.1 |
|
|
size_hint: 1, 0.1 |
|
|
|
|
|
|
|
|