mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-20 06:52:15 +00:00
* Add basic markdown support site wide
* Improved MD support.
Add some styling for images in MD
Add support for the bastardisation of the MD html for RML.
* Add processing for <ul> in RML
* Add OL processing to RML
* Fix a bug with squares appearing around the last page number
* Remove rml formatting in event_detail
* Improve handling of code blocks in RML
* Add MD to rigboard
Reduce MD title sizes as they were offensively large
* Add parsing of markdown when editing event items
* Improved list handling in RML
* Add tests for markdown support.
Focuses mainly on RML as that's where it will break
* Add indications of where MD support is enabled as per comment by @samozzy in #178.
Isn't quite a full description, but for the most part this should be enough for the people who know how to use it see where they can use it.
* Add failing test for markdown processing none
* Fix for failing test in e0d56e
* Add failing test for using single line breaks as per comment on #214
* Enable line break extension for single breaks in paragraphs by new lines.
Pass tests in ef3de607c3
* Enable GH flavour linebreaks in JS rendered markdown
* Made RML bullets pretty :)
* Added WYSIWYG editor. Works for notes & description, fails miserably for items :(
* Fixed for event items. Will probably fail tests because selenium can't type in simpleMDE :(
* FIX: Re-enable markdown on paperwork
Strikethrough is broken in all sorts of places for whatever reason
* FEAT: Markdown support on asset comments
* FIX: Prevent js injection through markdown fields
* Initial fixes
* Basic dark theme for simplemde
* Swap to locally delivered SimpleMDE
* Region for selenium testing of SimpleMDE
Bleh, Javascript all around
* Tests passing!
Fixed not using region for item modal, and overflow error on paperwork with really long description. Looks junk but I'm not really bothered
* Pep8 fixes
* Fallback for null HCapatcha sitekey
I.e. when we're on a branch
* Fix item description print being broken
* Actually fix sitekey problem
* Fixes for using markdown in asset comments
* Properly initialise markdown on asset comments
Co-authored-by: David Taylor <david@taylorhq.com>
Co-authored-by: FreneticScribbler <aj@aronajones.com>
66 lines
2.3 KiB
HTML
66 lines
2.3 KiB
HTML
{% load widget_tweaks %}
|
|
{% load markdown_tags %}
|
|
|
|
<div class="card">
|
|
<div class="card-header">
|
|
Asset Details
|
|
</div>
|
|
<div class="card-body">
|
|
{% if create or edit or duplicate %}
|
|
<div class="form-group">
|
|
<label for="{{ form.asset_id.id_for_label }}">Asset ID</label>
|
|
{% if duplicate %}
|
|
{% render_field form.asset_id|add_class:'form-control' value=object.asset_id %}
|
|
{% elif object.asset_id %}
|
|
{% render_field form.asset_id|attr:'readonly'|add_class:'disabled_input form-control' value=object.asset_id %}
|
|
{% else %}
|
|
{% render_field form.asset_id|add_class:'form-control' %}
|
|
{% endif %}
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="{{ form.description.id_for_label }}">Description</label>
|
|
{% render_field form.description|add_class:'form-control' value=object.description %}
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="{{ form.category.id_for_label }}" >Category</label>
|
|
{% render_field form.category|add_class:'form-control'%}
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="{{ form.status.id_for_label }}" >Status</label>
|
|
{% render_field form.status|add_class:'form-control'%}
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="{{ form.serial_number.id_for_label }}">Serial Number</label>
|
|
{% render_field form.serial_number|add_class:'form-control' value=object.serial_number %}
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="{{ form.is_cable.id_for_label }}">Cable?</label>
|
|
{% render_field form.is_cable|attr:'onchange=checkIfCableHidden()' %}
|
|
</div>
|
|
<!---TODO: Lower default number of lines in comments box-->
|
|
<div class="form-group">
|
|
<label for="{{ form.comments.id_for_label }}">Comments</label>
|
|
{% render_field form.comments|add_class:'form-control md-enabled' %}
|
|
</div>
|
|
{% else %}
|
|
<dt>Asset ID</dt>
|
|
<dd>{{ object.asset_id }}</dd>
|
|
|
|
<dt>Description</dt>
|
|
<dd>{{ object.description }}</dd>
|
|
|
|
<dt>Category</dt>
|
|
<dd>{{ object.category }}</dd>
|
|
|
|
<dt>Status</dt>
|
|
<dd>{{ object.status }}</dd>
|
|
|
|
<dt>Serial Number</dt>
|
|
<dd>{{ object.serial_number|default:'-' }}</dd>
|
|
|
|
<dt>Comments</dt>
|
|
<dd style="overflow-wrap: break-word;">{{ object.comments|default:'-'|markdown }}</dd>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|