Ejemplo n.º 1
0
def template_copy(request, uuid):
    new_uuid = uuid_hex()
    obj = get_object_or_none(TemplateContext, group_uuid=uuid)
    templates = Template.objects.filter(group_uuid=uuid)

    if obj and templates:
        TemplateContext.objects.create(group_uuid=new_uuid,
                                       context=obj.context)
        for t in templates:
            Template.objects.create(group_uuid=new_uuid, path=t.path,
                                    content=t.content)

        messages.success(request, _(u"Template copied successfully"))
        return redirect('form', uuid=new_uuid)
    else:
        messages.error(request, _(u"Template not found"))
        return redirect('/')
Ejemplo n.º 2
0
def template_new(request):
    """Redirects to template form with new uuid"""
    uuid = uuid_hex() 
    return redirect('form', uuid=uuid)