예제 #1
0
파일: tags.py 프로젝트: iblv/lirio-cms
def tag_pastor():
    tag = Tag(name='pastor')
    tag.put()
    return tag
예제 #2
0
파일: tags.py 프로젝트: iblv/lirio-cms
def tag_event():
    tag = Tag(name='event')
    tag.put()
    return tag
예제 #3
0
파일: tags.py 프로젝트: iblv/lirio-cms
def tag_computer():
    tag = Tag(name='computer')
    tag.put()
    return tag
예제 #4
0
파일: tags.py 프로젝트: c0debrain/lirio-cms
def tag_pastor():
  tag = Tag(name='pastor')
  tag.put()
  return tag
예제 #5
0
파일: tags.py 프로젝트: c0debrain/lirio-cms
def tag_event():
  tag = Tag(name='event')
  tag.put()
  return tag
예제 #6
0
파일: tags.py 프로젝트: c0debrain/lirio-cms
def tag_computer():
  tag = Tag(name='computer')
  tag.put()
  return tag