-
Notifications
You must be signed in to change notification settings - Fork 378
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: upload narrative minutes (#7125)
* feat: upload narrative minutes * chore: cover other new URL path
- Loading branch information
Showing
10 changed files
with
192 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
ietf/templates/meeting/upload_session_narrativeminutes.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{% extends "base.html" %} | ||
{# Copyright The IETF Trust 2024, All Rights Reserved #} | ||
{% load origin static django_bootstrap5 tz %} | ||
{% block title %} | ||
{% if narrativeminutes_sp %} | ||
Revise | ||
{% else %} | ||
Upload | ||
{% endif %} | ||
Narrative Minutes for {{ session.meeting }} : {{ session.group.acronym }} | ||
{% endblock %} | ||
{% block content %} | ||
{% origin %} | ||
<h1> | ||
{% if narrativeminutes_sp %} | ||
Revise | ||
{% else %} | ||
Upload | ||
{% endif %} | ||
Narrative Minutes for {{ session.meeting }} | ||
<br> | ||
<small class="text-body-secondary">{{ session.group.acronym }} | ||
{% if session.name %}: {{ session.name }}{% endif %} | ||
</small> | ||
</h1> | ||
{% if session_number %} | ||
<h2>Session {{ session_number }} : {{ session.official_timeslotassignment.timeslot.time|timezone:session.meeting.time_zone|date:"D M-d-Y Hi" }}</h2> | ||
{% endif %} | ||
<form enctype="multipart/form-data" method="post" class="my-3"> | ||
{% csrf_token %} | ||
{% bootstrap_form form %} | ||
<button type="submit" class="btn btn-primary">Upload</button> | ||
</form> | ||
{% endblock %} |