Files
Roberto Rosario 15c953815e Improve linking app tests
Signed-off-by: Roberto Rosario <roberto.rosario@mayan-edms.com>
2019-10-01 00:54:10 -04:00

13 lines
311 B
Python

from __future__ import unicode_literals
from django import forms
class WorkflowImageWidget(forms.widgets.Widget):
template_name = 'document_states/forms/widgets/workflow_image.html'
def format_value(self, value):
if value == '' or value is None:
return None
return value