| Total Lines | 4 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | from django import forms |
||
| 5 | class DialogForm(forms.ModelForm): |
||
| 6 | class Meta: |
||
| 7 | model = Dialog |
||
| 8 | fields = ['hash_entry', 'hash_id', 'callid', 'from_uri', 'from_tag', 'to_uri', 'to_tag', 'caller_cseq', 'callee_cseq', 'caller_route_set', 'callee_route_set', 'caller_contact', 'callee_contact', 'caller_sock', 'callee_stock', 'state', 'start_time', 'timeout', 'sflags', 'iflags', 'toroute_name', 'req_uri', 'xdata'] |
||
| 9 | |||
| 17 |