# Tags Crud

models.py

```python
class Tags (Document):
    name = StringField()
    def __str__(self):
        return self.name    
```

forms.py

```python
from .models import Tags

class TagsForm(DocumentForm)   :
    class Meta:
        model=  Tags
        fields='__all__' 
```

views.py

```python
from .models import Tags
from .forms import TagsForm
```
