created the Manage Conference Aliases page

This commit is contained in:
2026-02-07 23:15:26 -07:00
parent 77bd541546
commit cc1844cc46
4 changed files with 79 additions and 1 deletions
+29
View File
@@ -123,6 +123,35 @@ func EditConference(ctxt ui.AmContext) (string, any, error) {
return "redirect", fmt.Sprintf("/comm/%s/conf/%s/manage", comm.Alias, ctxt.GetScratch("currentAlias")), nil
}
/* ConferenceAliasForm displays the form for managing conference aliases.
* Parameters:
* ctxt - The AmContext for the request.
* Returns:
* Command string dictating what to be rendered.
* Data as a parameter for the command string.
* Standard Go error status.
*/
func ConferenceAliasForm(ctxt ui.AmContext) (string, any, error) {
comm := ctxt.CurrentCommunity()
conf := ctxt.GetScratch("currentConference").(*database.Conference)
myLevel := ctxt.GetScratch("levelInConference").(uint16)
if !conf.TestPermission("Conference.Change", myLevel) {
ctxt.SetRC(http.StatusForbidden)
return ui.ErrorPage(ctxt, ENOPERM)
}
aliases, err := conf.Aliases(ctxt.Ctx())
if err != nil {
return ui.ErrorPage(ctxt, err)
}
ctxt.VarMap().Set("aliases", aliases)
ctxt.VarMap().Set("confName", conf.Name)
ctxt.VarMap().Set("backLink", fmt.Sprintf("/comm/%s/conf/%s/manage", comm.Alias, ctxt.GetScratch("currentAlias")))
ctxt.VarMap().Set("amsterdam_pageTitle", fmt.Sprintf("Manage Conference Aliases: %s", conf.Name))
return "framed_template", "conf_aliases.jet", nil
}
/* CreateConferenceForm displays the dialog for creating a new conference.
* Parameters:
* ctxt - The AmContext for the request.
+1
View File
@@ -114,6 +114,7 @@ func setupEcho() *echo.Echo {
confGroup.GET("/fixseen", ui.AmWrap(ConfFixseen))
confGroup.GET("/edit", ui.AmWrap(EditConferenceForm))
confGroup.POST("/edit", ui.AmWrap(EditConference))
confGroup.GET("/aliases", ui.AmWrap(ConferenceAliasForm))
confGroup.GET("/hotlist", ui.AmWrap(AddToHotlist))
confGroup.GET("/invite", ui.AmWrap(InviteToConference))
confGroup.GET("/r/:topic", ui.AmWrap(ReadPosts), ui.SetTopic)
+1 -1
View File
@@ -94,7 +94,7 @@ menudefs:
- text: "Change Conference Information"
link: "/comm/[CID]/conf/[CONFID]/edit"
- text: "Manage Conference Aliases"
link: "/TODO/comm/[CID]/conf/[CONFID]/aliases"
link: "/comm/[CID]/conf/[CONFID]/aliases"
- text: "Manage Conference Members"
link: "/TODO/comm/[CID]/conf/[CONFID]/members"
- text: "Customize Conference Appearance"
+48
View File
@@ -0,0 +1,48 @@
{*
* Amsterdam Web Communities System
* Copyright (c) 2025-2026 Erbosoft Metaverse Design Solutions, All Rights Reserved
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*}
<div class="p-4">
<!-- Page Title -->
<div class="mb-6">
<div class="flex items-baseline gap-2">
<h1 class="text-blue-800 text-4xl font-bold">Managing Conference Aliases:</h1>
<span class="text-blue-800 text-2xl">{{ confName }}</span>
</div>
<hr class="border-2 border-gray-400 w-4/5 mt-2 mb-6">
</div>
<!-- Backlink -->
<div class="mb-4">
<a class="text-blue-700 hover:text-blue-900 text-sm font-medium" href="{{ backLink }}">Return to Manage Conference Menu</a>
</div>
<div class="max-w-3xl">
<h2 class="text-blue-800 text-3xl font-bold mb-2">Current Aliases:</h2>
<div class="grid grid-cols-1 md:grid-cols-1 gap-1 mb-6">
{{ range _, a := aliases }}
<div class="flex items-start gap-1">
<span class="text-sm pt-0.5">🟣</span>
<span class="text-black">{{ a }}</span>
{{ if len(aliases) > 1 }}
<a href="TODO" class="hover:scale-125 inline-block transition-transform" title="Remove">🗙</a>
{{ end }}
</div>
{{ end }}
</div>
<h2 class="text-blue-800 text-3xl font-bold mb-2">Add New Alias:</h2>
<form method="POST" action="TODO">
<div class="flex justify-between items-center mb-2">
<input type="text" id="na" name="na" size="32" maxlength="64" value="" placeholder="New alias..."
class="flex-1 px-3 py-2 border border-gray-300 rounded font-mono focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
<button type="submit" name="add" class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-2 rounded font-medium transition-colors">Add</button>
</div>
</form>
</div>
</div>