This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import six | |
import itertools | |
from attrdict import AttrDict | |
import graphene | |
from graphene.core.classtypes.objecttype import ObjectTypeOptions | |
from graphene.core.types import ArgumentsGroup | |
from graphene.core.types.definitions import NonNull | |
from graphene.core.classtypes.mutation import Mutation, MutationMeta |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class UserAdmin extends BaseAdmin { | |
renderTableRow(props) { | |
return ( | |
<Row> | |
<CheckboxCell> | |
<TextCell value={props.object.email}> | |
<TextCell value={props.object.gender}> | |
</Row> | |
) | |
} |