]> git.zarvox.org Git - wp3.git/blob - donestep.py
Add a "completed" page with a stub to be used to commit adding the person to the...
[wp3.git] / donestep.py
1 from PyQt4 import QtCore
2 from PyQt4.QtGui import *
3
4 class DoneStep(QWidget):
5         def __init__(self, parent=None):
6                 QWidget.__init__(self,parent)
7                 self.title = QLabel("<center><h2>Thanks for submitting your info to the Whitepages!</h2></center>")
8                 self.grid = QGridLayout()
9                 self.grid.addWidget(self.title,0,0,1,1)
10                 self.setLayout(self.grid)
11                 self.data = {}