when editing events, preserve time
This commit is contained in:
parent
f4760b06f7
commit
aa90b1928f
|
@ -31,11 +31,11 @@
|
|||
</div>
|
||||
{{ end }}
|
||||
<p><button id=addtimebutton type=button onclick="showelement('timedescriptor')">add time</button>
|
||||
<div id=timedescriptor style="display: none">
|
||||
<div id=timedescriptor style="{{ or .ShowTime "display: none" }}">
|
||||
<p><label for=timestart>start:</label><br>
|
||||
<input type="text" name="timestart" value="">
|
||||
<input type="text" name="timestart" value="{{ .StartTime }}">
|
||||
<p><label for=timeend>duration:</label><br>
|
||||
<input type="text" name="timeend" value="">
|
||||
<input type="text" name="timeend" value="{{ .Duration }}">
|
||||
</div>
|
||||
</details>
|
||||
<p>
|
||||
|
|
12
web.go
12
web.go
|
@ -1351,7 +1351,12 @@ func edithonkpage(w http.ResponseWriter, r *http.Request) {
|
|||
templinfo["MapLink"] = getmaplink(u)
|
||||
templinfo["Noise"] = noise
|
||||
templinfo["SavedPlace"] = honk.Place
|
||||
templinfo["ServerMessage"] = "honk edit"
|
||||
if tm := honk.Time; tm != nil {
|
||||
templinfo["ShowTime"] = ";"
|
||||
templinfo["StartTime"] = tm.StartTime.Format("2006-01-02 03:04")
|
||||
templinfo["Duration"] = tm.Duration
|
||||
}
|
||||
templinfo["ServerMessage"] = "honk edit 2"
|
||||
templinfo["IsPreview"] = true
|
||||
templinfo["UpdateXID"] = honk.XID
|
||||
if len(honk.Donks) > 0 {
|
||||
|
@ -1638,6 +1643,11 @@ func submithonk(w http.ResponseWriter, r *http.Request, isAPI bool) {
|
|||
templinfo["InReplyTo"] = r.FormValue("rid")
|
||||
templinfo["Noise"] = r.FormValue("noise")
|
||||
templinfo["SavedFile"] = donkxid
|
||||
if tm := honk.Time; tm != nil {
|
||||
templinfo["ShowTime"] = ";"
|
||||
templinfo["StartTime"] = tm.StartTime.Format("2006-01-02 03:04")
|
||||
templinfo["Duration"] = tm.Duration
|
||||
}
|
||||
templinfo["IsPreview"] = true
|
||||
templinfo["UpdateXID"] = updatexid
|
||||
templinfo["ServerMessage"] = "honk preview"
|
||||
|
|
Loading…
Reference in New Issue