when editing events, preserve time

Ted Unangst 4 years ago
parent f0a247c341
commit 47d52687cc

@ -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>

@ -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…
Cancel
Save