mirror of
https://github.com/osmarks/mycorrhiza.git
synced 2024-10-30 19:56:16 +00:00
84 lines
2.4 KiB
Go
84 lines
2.4 KiB
Go
|
// Code generated by qtc from "http_mutators.qtpl". DO NOT EDIT.
|
||
|
// See https://github.com/valyala/quicktemplate for details.
|
||
|
|
||
|
//line templates/http_mutators.qtpl:2
|
||
|
package templates
|
||
|
|
||
|
//line templates/http_mutators.qtpl:2
|
||
|
import (
|
||
|
qtio422016 "io"
|
||
|
|
||
|
qt422016 "github.com/valyala/quicktemplate"
|
||
|
)
|
||
|
|
||
|
//line templates/http_mutators.qtpl:2
|
||
|
var (
|
||
|
_ = qtio422016.Copy
|
||
|
_ = qt422016.AcquireByteBuffer
|
||
|
)
|
||
|
|
||
|
//line templates/http_mutators.qtpl:2
|
||
|
func StreamEditHTML(qw422016 *qt422016.Writer, hyphaName, textAreaFill, warning string) {
|
||
|
//line templates/http_mutators.qtpl:2
|
||
|
qw422016.N().S(`
|
||
|
<main>
|
||
|
<h1>Edit `)
|
||
|
//line templates/http_mutators.qtpl:4
|
||
|
qw422016.E().S(hyphaName)
|
||
|
//line templates/http_mutators.qtpl:4
|
||
|
qw422016.N().S(`</h1>
|
||
|
`)
|
||
|
//line templates/http_mutators.qtpl:5
|
||
|
qw422016.N().S(warning)
|
||
|
//line templates/http_mutators.qtpl:5
|
||
|
qw422016.N().S(`
|
||
|
<form method="post" class="upload-text-form"
|
||
|
action="/upload-text/`)
|
||
|
//line templates/http_mutators.qtpl:7
|
||
|
qw422016.E().S(hyphaName)
|
||
|
//line templates/http_mutators.qtpl:7
|
||
|
qw422016.N().S(`">
|
||
|
<textarea name="text">`)
|
||
|
//line templates/http_mutators.qtpl:8
|
||
|
qw422016.E().S(textAreaFill)
|
||
|
//line templates/http_mutators.qtpl:8
|
||
|
qw422016.N().S(`</textarea>
|
||
|
<br/>
|
||
|
<input type="submit"/>
|
||
|
<a href="/page/`)
|
||
|
//line templates/http_mutators.qtpl:11
|
||
|
qw422016.E().S(hyphaName)
|
||
|
//line templates/http_mutators.qtpl:11
|
||
|
qw422016.N().S(`">Cancel</a>
|
||
|
</form>
|
||
|
</main>
|
||
|
`)
|
||
|
//line templates/http_mutators.qtpl:14
|
||
|
}
|
||
|
|
||
|
//line templates/http_mutators.qtpl:14
|
||
|
func WriteEditHTML(qq422016 qtio422016.Writer, hyphaName, textAreaFill, warning string) {
|
||
|
//line templates/http_mutators.qtpl:14
|
||
|
qw422016 := qt422016.AcquireWriter(qq422016)
|
||
|
//line templates/http_mutators.qtpl:14
|
||
|
StreamEditHTML(qw422016, hyphaName, textAreaFill, warning)
|
||
|
//line templates/http_mutators.qtpl:14
|
||
|
qt422016.ReleaseWriter(qw422016)
|
||
|
//line templates/http_mutators.qtpl:14
|
||
|
}
|
||
|
|
||
|
//line templates/http_mutators.qtpl:14
|
||
|
func EditHTML(hyphaName, textAreaFill, warning string) string {
|
||
|
//line templates/http_mutators.qtpl:14
|
||
|
qb422016 := qt422016.AcquireByteBuffer()
|
||
|
//line templates/http_mutators.qtpl:14
|
||
|
WriteEditHTML(qb422016, hyphaName, textAreaFill, warning)
|
||
|
//line templates/http_mutators.qtpl:14
|
||
|
qs422016 := string(qb422016.B)
|
||
|
//line templates/http_mutators.qtpl:14
|
||
|
qt422016.ReleaseByteBuffer(qb422016)
|
||
|
//line templates/http_mutators.qtpl:14
|
||
|
return qs422016
|
||
|
//line templates/http_mutators.qtpl:14
|
||
|
}
|